From 5d8932aee8166f171b56ca161e99bc903c70ff60 Mon Sep 17 00:00:00 2001 From: Ysiad Ferreiras Date: Thu, 26 May 2011 00:34:21 -0700 Subject: [PATCH] CSV Documentation Updates: Specified that fastercsv was new as of 1.9, as "New" could be ambiguous. And fixed a couple of minor typos. --- lib/csv.rb | 9 +++++---- 1 files changed, 5 insertions(+), 4 deletions(-) diff --git a/lib/csv.rb b/lib/csv.rb index c19a59e..48c2e97 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) -- 1.7.3.1