summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--lib/csv.rb2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index f0a5325b23..cec84e4657 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Wed Jul 8 07:43:01 2015 SHIBATA Hiroshi <[email protected]>
+
+ * lib/csv.rb: typo fix [ci skip][fix GH-958] Patch by @henrik
+
Wed Jul 8 04:42:27 2015 Eric Wong <[email protected]>
* iseq.c (iseq_data_to_ary): dump kw_arg as symbol
diff --git a/lib/csv.rb b/lib/csv.rb
index e1e151b802..410622682e 100644
--- a/lib/csv.rb
+++ b/lib/csv.rb
@@ -176,7 +176,7 @@ require "stringio"
# support. For example, <tt>:col_sep</tt>, <tt>:row_sep</tt>, and
# <tt>:quote_char</tt> must be transcoded to match your data. Hopefully this
# makes the entire process feel transparent, since CSV's defaults should just
-# magically work for you data. However, you can set these values manually in
+# magically work for your data. However, you can set these values manually in
# the target Encoding to avoid the translation.
#
# It's also important to note that while all of CSV's core parser is now