From c47dd4b3a777cde0e77ad7067580a0ffea196c80 Mon Sep 17 00:00:00 2001 From: Oskar Eichler Date: Sun, 30 Aug 2026 10:35:22 +0200 Subject: [PATCH] Resolve generated documentation references --- lib/csv.rb | 2 +- lib/csv/row.rb | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/csv.rb b/lib/csv.rb index b1f1b80c..e1da5a4e 100644 --- a/lib/csv.rb +++ b/lib/csv.rb @@ -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: diff --git a/lib/csv/row.rb b/lib/csv/row.rb index 40988001..0cf77f75 100644 --- a/lib/csv/row.rb +++ b/lib/csv/row.rb @@ -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"