summaryrefslogtreecommitdiff
path: root/lib/csv.rb
diff options
context:
space:
mode:
authorzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-11-07 17:10:34 +0000
committerzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-11-07 17:10:34 +0000
commitbceb8569866439e832d0500aa1bf4ad2b8e36be8 (patch)
treef07b82cb10ada90eeea2fb02f72147f4e03a3ac8 /lib/csv.rb
parent721ec2272cccb249ae15e62caebdd5c8caf1e276 (diff)
* lib/csv.rb: [DOC] Fix typo in CSV.parse_line by @funky-bibimbap
[Fixes GH-430] https://github.com/ruby/ruby/pull/430 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43569 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/csv.rb')
-rw-r--r--lib/csv.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/csv.rb b/lib/csv.rb
index 15f06c96f8..804b941433 100644
--- a/lib/csv.rb
+++ b/lib/csv.rb
@@ -1300,8 +1300,8 @@ class CSV
#
# This method is a shortcut for converting a single line of a CSV String into
- # a into an Array. Note that if +line+ contains multiple rows, anything
- # beyond the first row is ignored.
+ # an Array. Note that if +line+ contains multiple rows, anything beyond the
+ # first row is ignored.
#
# The +options+ parameter can be anything CSV::new() understands.
#