summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog8
-rw-r--r--lib/csv.rb4
2 files changed, 8 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 297fc78a00..a5bcac6e54 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,11 @@
+Wed Mar 4 05:19:27 2009 James Edward Gray II <jeg2@ruby-lang.org>
+
+ * lib/csv.rb: Some minor documentation fixes from Gregory Brown.
+
Wed Mar 4 03:42:56 2009 James Edward Gray II <jeg2@ruby-lang.org>
- * lib/csv.rb: A patch from Madoka Yakamamoto to prevent an infinite
- loop while reading some encodings.
+ * lib/csv.rb: A patch from Madoka Yakamamoto to prevent an infinite
+ loop while reading some encodings.
Wed Mar 4 00:54:43 2009 Yuki Sonoda (Yugui) <yugui@yugui.jp>
diff --git a/lib/csv.rb b/lib/csv.rb
index 774f9c3ef3..8adc2973b9 100644
--- a/lib/csv.rb
+++ b/lib/csv.rb
@@ -2238,10 +2238,10 @@ class CSV
end
#
- # This method is an encoding safe version of Regexp::escape(). I will escape
+ # This method is an encoding safe version of Regexp::escape(). It will escape
# any characters that would change the meaning of a regular expression in the
# encoding of +str+. Regular expression characters that cannot be transcoded
- # to the target encodign will be skipped and no escaping will be performed if
+ # to the target encoding will be skipped and no escaping will be performed if
# a backslash cannot be transcoded.
#
def escape_re(str)