Skip to content
Merged
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/parser.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading