From 3350f100590cdf6a0525224ad864db207dbef7dd Mon Sep 17 00:00:00 2001 From: Petrik Date: Wed, 30 Apr 2025 20:17:12 +0200 Subject: [PATCH] Replace link to ruby-doc.org with docs.ruby-lang.org Link to official docs (ruby-doc.org is not official). Co-authored-by: Sutou Kouhei --- lib/csv/parser.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/csv/parser.rb b/lib/csv/parser.rb index c1a5e288..4a74e40d 100644 --- a/lib/csv/parser.rb +++ b/lib/csv/parser.rb @@ -47,7 +47,7 @@ class UnexpectedError < StandardError # Uses StringScanner (the official strscan gem). Strscan provides lexical # scanning operations on a String. We inherit its object and take advantage # on the methods. For more information, please visit: - # https://ruby-doc.org/stdlib-2.6.1/libdoc/strscan/rdoc/StringScanner.html + # https://docs.ruby-lang.org/en/master/StringScanner.html # class Scanner < StringScanner alias_method :scan_all, :scan