Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/csv.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1165,7 +1165,7 @@ def instance(data = $stdout, **options)
# File.read('t.csv') # => "Name,Value\nFOO,0\nBAR,-1\nBAZ,-2\n"
#
# When neither +in_string_or_io+ nor +out_string_or_io+ given,
# parses from {ARGF}[rdoc-ref:ARGF]
# parses from {ARGF}[https://docs.ruby-lang.org/en/master/ARGF.html]
# and generates to STDOUT.
#
# Without headers:
Expand Down
3 changes: 1 addition & 2 deletions lib/csv/row.rb
Original file line number Diff line number Diff line change
Expand Up @@ -726,8 +726,7 @@ def to_csv(**options)
# Finds and returns the object in nested object that is specified
# by +index_or_header+ and +specifiers+.
#
# The nested objects may be instances of various classes.
# See {Dig Methods}[rdoc-ref:dig_methods.rdoc].
# The nested objects may be instances of various classes that respond to +dig+.
#
# Examples:
# source = "Name,Value\nfoo,0\nbar,1\nbaz,2\n"
Expand Down