summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTOMITA Masahiro <tommy@tmtm.org>2019-12-25 06:32:53 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2020-07-20 02:32:49 +0900
commitaeac7db8236ad43d8c8992fd1b9d120d567754ec (patch)
tree591237ad1810e18bd599dd6ddb16518918ebbcad
parent3c5b67e0db22ec9a15cef6c4961abf6f91373dd3 (diff)
[ruby/csv] Fix docs for :strip option (#114)
https://github.com/ruby/csv/commit/fb10925271
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/3332
-rw-r--r--lib/csv.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/csv.rb b/lib/csv.rb
index c793b8e96a..8aa9dcabc6 100644
--- a/lib/csv.rb
+++ b/lib/csv.rb
@@ -909,7 +909,7 @@ class CSV
# empty value(s) on each line will be
# replaced with the specified value.
# <b><tt>:strip</tt></b>:: When setting a +true+ value, CSV will
- # strip "\t\r\n\f\v" around the values.
+ # strip " \t\f\v" around the values.
# If you specify a string instead of
# +true+, CSV will strip string. The
# length of the string must be 1.