* 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
This commit is contained in:
jeg2 2011-05-26 13:32:40 +00:00
Родитель db0f21e906
Коммит b74f5dee4a
2 изменённых файлов: 10 добавлений и 4 удалений

Просмотреть файл

@ -1,3 +1,8 @@
Thu May 26 10:32:11 2011 James Edward Gray II <jeg2@ruby-lang.org>
* lib/csv.rb: Documentation improvements from Ysiad Ferreiras.
[Ruby 1.9 - Bug #4785]
Thu May 26 15:42:02 2011 Cezary Baginski <cezary.baginski@gmail.com>
* lib/xmlrpc/parser.rb (FaultException): fix to_s and inspect

Просмотреть файл

@ -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)