summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-06-03 17:26:35 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-06-03 17:26:35 +0000
commitffa06e3e90ec254fbe6a37100a84017cd5f8be51 (patch)
tree3ca4c9eaba90ab2ed7c5f2672c73799ce36c03da
parentbd08e4d4936665364998ed900c807b4fac28ba11 (diff)
downloadruby-ffa06e3e90ec254fbe6a37100a84017cd5f8be51.tar.gz
ruby-ffa06e3e90ec254fbe6a37100a84017cd5f8be51.tar.xz
ruby-ffa06e3e90ec254fbe6a37100a84017cd5f8be51.zip
* lib/base64.rb: typo fixed. a patch from okkez. [ruby-dev:38564]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@23634 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--lib/base64.rb2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 12c4a60ae..76da4f438 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Thu Jun 4 02:25:51 2009 Yukihiro Matsumoto <matz@ruby-lang.org>
+
+ * lib/base64.rb: typo fixed. a patch from okkez. [ruby-dev:38564]
+
Wed Jun 3 09:03:23 2009 Yukihiro Matsumoto <matz@ruby-lang.org>
* enum.c (enum_first): should check negative length.
diff --git a/lib/base64.rb b/lib/base64.rb
index 383acacef..a240b730b 100644
--- a/lib/base64.rb
+++ b/lib/base64.rb
@@ -1,5 +1,5 @@
#
-# = base64.rb: methods for base64-encoding and -decoding stings
+# = base64.rb: methods for base64-encoding and -decoding strings
#
# The Base64 module provides for the encoding (#encode64, #strict_encode64,