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

[ruby/csv] doc: Match text to the struct name (https://github.com/ruby/csv/pull/217)

744e41130c
This commit is contained in:
Vince 2021-08-05 16:40:05 -04:00 committed by Sutou Kouhei
parent e40baca33d
commit 8aaa1c279f
Notes: git 2021-10-24 05:58:05 +09:00

View file

@ -502,7 +502,7 @@ using CSV::MatchP if CSV.const_defined?(:MatchP)
# [" 1 ", #<struct CSV::FieldInfo index=1, line=2, header=nil>]
# [" baz ", #<struct CSV::FieldInfo index=0, line=3, header=nil>]
# [" 2 ", #<struct CSV::FieldInfo index=1, line=3, header=nil>]
# Each CSV::Info object shows:
# Each CSV::FieldInfo object shows:
# - The 0-based field index.
# - The 1-based line index.
# - The field header, if any.