summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorjeg2 <jeg2@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-05-26 13:32:40 +0000
committerjeg2 <jeg2@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-05-26 13:32:40 +0000
commitb74f5dee4a3a2b62753e42b87ec26837d508fa9a (patch)
tree1b7f629523d3ea024fcdadeff49c258cef965cec /lib
parentdb0f21e906340b12cf1e20a3e560855aa80cdcb0 (diff)
* lib/csv.rb: Documentation improvements from Ysiad Ferreiras.
[Ruby 1.9 - Bug #4785] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31739 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/csv.rb9
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/csv.rb b/lib/csv.rb
index c19a59e997..48c2e97eda 100644
--- a/lib/csv.rb
+++ b/lib/csv.rb
@@ -27,7 +27,8 @@
# hopefully this won't be too radically different.
#
# We must have met our goals because FasterCSV was renamed to CSV and replaced
-# the original library.
+# the original library as of Ruby 1.9. If you are migrating code from 1.8 or
+# earlier, you may have to change your code to comply with the new interface.
#
# == What's Different From the Old CSV?
#
@@ -2220,7 +2221,7 @@ class CSV
end
#
- # This methods is used to turn a finished +row+ into a CSV::Row. Header rows
+ # This method is used to turn a finished +row+ into a CSV::Row. Header rows
# are also dealt with here, either by returning a CSV::Row with identical
# headers and fields (save that the fields do not go through the converters)
# or by reading past them to return a field row. Headers are also saved in
@@ -2259,8 +2260,8 @@ class CSV
end
#
- # Thiw methods injects an instance variable <tt>unconverted_fields</tt> into
- # +row+ and an accessor method for it called unconverted_fields(). The
+ # This method injects an instance variable <tt>unconverted_fields</tt> into
+ # +row+ and an accessor method for +row+ called unconverted_fields(). The
# variable is set to the contents of +fields+.
#
def add_unconverted_fields(row, fields)