]> git.donarmstrong.com Git - biopieces.git/commitdiff
fixed typo in base36.rb
authormartinahansen <martinahansen@74ccb610-7750-0410-82ae-013aeee3265d>
Fri, 11 Feb 2011 18:42:48 +0000 (18:42 +0000)
committermartinahansen <martinahansen@74ccb610-7750-0410-82ae-013aeee3265d>
Fri, 11 Feb 2011 18:42:48 +0000 (18:42 +0000)
git-svn-id: http://biopieces.googlecode.com/svn/trunk@1271 74ccb610-7750-0410-82ae-013aeee3265d

code_ruby/Maasha/lib/base36.rb

index 9af7a3fdd6d6274ef71d0dc74e7617beeb2531c2..89d50e1614577e3b2a51230f8ebbfc0e1ec5bd6d 100644 (file)
@@ -28,7 +28,7 @@ class Base36Error < StandardError; end
 ALPH   = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 BASE36 = 36
 
-# Class containing methods to encode and decade Base 36.
+# Class containing methods to encode and decode Base 36.
 # Note that the ALPH is [alph + num] and not [num + alph]
 # which prevents us from simply using .to_i(36) and .to_s(36).
 #