summaryrefslogtreecommitdiff
path: root/lib/csv.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-03-20 03:30:59 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-03-20 03:30:59 +0000
commitc9dd4823d98141754842c0b356b141d94ba36604 (patch)
treef2b25b637c22571cfc5c1eed76ee62b19520b47f /lib/csv.rb
parent772cc7a4f212fa3249f88c98b19645beb7f3d199 (diff)
* lib: fixed typo. a patch by Sho Hashimoto in [ruby-dev:40716].
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26986 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/csv.rb')
-rw-r--r--lib/csv.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/csv.rb b/lib/csv.rb
index c61e57c222..b9066f9cc8 100644
--- a/lib/csv.rb
+++ b/lib/csv.rb
@@ -1212,7 +1212,7 @@ class CSV
# Note that a passed String *is* modfied by this method. Call dup() before
# passing if you need a new String.
#
- # The +options+ parameter can be anthing CSV::new() understands. This method
+ # The +options+ parameter can be anything CSV::new() understands. This method
# understands an additional <tt>:encoding</tt> parameter when not passed a
# String to set the base Encoding for the output. CSV needs this hint if you
# plan to output non-ASCII compatible data.
@@ -1238,7 +1238,7 @@ class CSV
# This method is a shortcut for converting a single row (Array) into a CSV
# String.
#
- # The +options+ parameter can be anthing CSV::new() understands. This method
+ # The +options+ parameter can be anything CSV::new() understands. This method
# understands an additional <tt>:encoding</tt> parameter to set the base
# Encoding for the output. This method will try to guess your Encoding from
# the first non-+nil+ field in +row+, if possible, but you may need to use
@@ -1372,7 +1372,7 @@ class CSV
# a into an Array. Note that if +line+ contains multiple rows, anything
# beyond the first row is ignored.
#
- # The +options+ parameter can be anthing CSV::new() understands.
+ # The +options+ parameter can be anything CSV::new() understands.
#
def self.parse_line(line, options = Hash.new)
new(line, options).shift