Skip to content

Commit e2a0692

Browse files
authored
Use https links instead of http (#274)
1 parent e5622c5 commit e2a0692

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/csv.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
# == What is CSV, really?
7171
#
7272
# CSV maintains a pretty strict definition of CSV taken directly from
73-
# {the RFC}[http://www.ietf.org/rfc/rfc4180.txt]. I relax the rules in only one
73+
# {the RFC}[https://www.ietf.org/rfc/rfc4180.txt]. I relax the rules in only one
7474
# place and that is to make using this library easier. CSV will parse all valid
7575
# CSV.
7676
#

test/csv/parse/test_general.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
#
99
# Following tests are my interpretation of the
10-
# {CSV RCF}[http://www.ietf.org/rfc/rfc4180.txt]. I only deviate from that
10+
# {CSV RCF}[https://www.ietf.org/rfc/rfc4180.txt]. I only deviate from that
1111
# document in one place (intentionally) and that is to make the default row
1212
# separator <tt>$/</tt>.
1313
#
@@ -75,7 +75,7 @@ def test_std_lib_csv
7575
end
7676
end
7777

78-
# From: http://ruby-talk.org/cgi-bin/scat.rb/ruby/ruby-core/6496
78+
# From: https://ruby-talk.org/cgi-bin/scat.rb/ruby/ruby-core/6496
7979
def test_aras_edge_cases
8080
[ [%Q{a,b}, ["a", "b"]],
8181
[%Q{a,"""b"""}, ["a", "\"b\""]],

0 commit comments

Comments
 (0)