From b74f5dee4a3a2b62753e42b87ec26837d508fa9a Mon Sep 17 00:00:00 2001 From: jeg2 Date: Thu, 26 May 2011 13:32:40 +0000 Subject: * 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 --- lib/csv.rb | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'lib') 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 unconverted_fields into - # +row+ and an accessor method for it called unconverted_fields(). The + # This method injects an instance variable unconverted_fields 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) -- cgit v1.2.3