1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* 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
parent db0f21e906
commit b74f5dee4a
2 changed files with 10 additions and 4 deletions

View file

@ -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> Thu May 26 15:42:02 2011 Cezary Baginski <cezary.baginski@gmail.com>
* lib/xmlrpc/parser.rb (FaultException): fix to_s and inspect * lib/xmlrpc/parser.rb (FaultException): fix to_s and inspect

View file

@ -27,7 +27,8 @@
# hopefully this won't be too radically different. # hopefully this won't be too radically different.
# #
# We must have met our goals because FasterCSV was renamed to CSV and replaced # 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? # == What's Different From the Old CSV?
# #
@ -2220,7 +2221,7 @@ class CSV
end 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 # 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) # 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 # or by reading past them to return a field row. Headers are also saved in
@ -2259,8 +2260,8 @@ class CSV
end end
# #
# Thiw methods injects an instance variable <tt>unconverted_fields</tt> into # This method injects an instance variable <tt>unconverted_fields</tt> into
# +row+ and an accessor method for it called unconverted_fields(). The # +row+ and an accessor method for +row+ called unconverted_fields(). The
# variable is set to the contents of +fields+. # variable is set to the contents of +fields+.
# #
def add_unconverted_fields(row, fields) def add_unconverted_fields(row, fields)