From: martinahansen Date: Fri, 11 Feb 2011 18:42:48 +0000 (+0000) Subject: fixed typo in base36.rb X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=a259ccdbd5528878feec5bdff14e5426cf8f359f;p=biopieces.git fixed typo in base36.rb git-svn-id: http://biopieces.googlecode.com/svn/trunk@1271 74ccb610-7750-0410-82ae-013aeee3265d --- diff --git a/code_ruby/Maasha/lib/base36.rb b/code_ruby/Maasha/lib/base36.rb index 9af7a3f..89d50e1 100644 --- a/code_ruby/Maasha/lib/base36.rb +++ b/code_ruby/Maasha/lib/base36.rb @@ -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). #