aboutsummaryrefslogtreecommitdiffstats
path: root/lib/csv.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-19 05:23:50 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-19 05:23:50 +0000
commit6dac81effaef8cf5d94040b5b18d32d8e9373798 (patch)
tree29d3237b7a6b064c5e148930d78e3073c016c68a /lib/csv.rb
parentcc4ab95735367c90064fdb624dc7f29aef036da6 (diff)
downloadruby-6dac81effaef8cf5d94040b5b18d32d8e9373798.tar.gz
csv.rb: Fix typo [ci skip
* lib/csv.rb (CSV#initialize): [DOC] Fix double-word typo. [Fix GH-1161] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53199 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/csv.rb')
-rw-r--r--lib/csv.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/csv.rb b/lib/csv.rb
index 6456da8103..ba9d62c706 100644
--- a/lib/csv.rb
+++ b/lib/csv.rb
@@ -1364,7 +1364,7 @@ class CSV
# a String for +data+, you can later retrieve it (after writing to it, for
# example) with CSV.string().
#
- # Note that a wrapped String will be positioned at at the beginning (for
+ # Note that a wrapped String will be positioned at the beginning (for
# reading). If you want it at the end (for writing), use CSV::generate().
# If you want any other positioning, pass a preset StringIO object instead.
#