From e2a06929a82091c399ea46dc495de17daceeba20 Mon Sep 17 00:00:00 2001 From: Vivek Bharath Akupatni Date: Sun, 12 Feb 2023 00:35:51 -0500 Subject: [PATCH] Use https links instead of http (#274) --- lib/csv.rb | 2 +- test/csv/parse/test_general.rb | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/csv.rb b/lib/csv.rb index 03070339..d4dc569b 100644 --- a/lib/csv.rb +++ b/lib/csv.rb @@ -70,7 +70,7 @@ # == What is CSV, really? # # CSV maintains a pretty strict definition of CSV taken directly from -# {the RFC}[http://www.ietf.org/rfc/rfc4180.txt]. I relax the rules in only one +# {the RFC}[https://www.ietf.org/rfc/rfc4180.txt]. I relax the rules in only one # place and that is to make using this library easier. CSV will parse all valid # CSV. # diff --git a/test/csv/parse/test_general.rb b/test/csv/parse/test_general.rb index ff32eef6..8fc4d142 100644 --- a/test/csv/parse/test_general.rb +++ b/test/csv/parse/test_general.rb @@ -7,7 +7,7 @@ # # Following tests are my interpretation of the -# {CSV RCF}[http://www.ietf.org/rfc/rfc4180.txt]. I only deviate from that +# {CSV RCF}[https://www.ietf.org/rfc/rfc4180.txt]. I only deviate from that # document in one place (intentionally) and that is to make the default row # separator $/. # @@ -75,7 +75,7 @@ def test_std_lib_csv end end - # From: http://ruby-talk.org/cgi-bin/scat.rb/ruby/ruby-core/6496 + # From: https://ruby-talk.org/cgi-bin/scat.rb/ruby/ruby-core/6496 def test_aras_edge_cases [ [%Q{a,b}, ["a", "b"]], [%Q{a,"""b"""}, ["a", "\"b\""]],