Skip to content

Commit 1fa69ea

Browse files
authored
Merge pull request #261 from BurdetteLamar/fix_links_in_requests.rb
[DOC] Fix links in requests.rb
2 parents cfeb699 + a232aea commit 1fa69ea

1 file changed

Lines changed: 24 additions & 24 deletions

File tree

lib/net/http/requests.rb

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
#
2020
# - Request body: optional.
2121
# - Response body: yes.
22-
# - {Safe}[https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Safe_methods]: yes.
23-
# - {Idempotent}[https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Idempotent_methods]: yes.
24-
# - {Cacheable}[https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Cacheable_methods]: yes.
22+
# - {Safe}[https://en.wikipedia.org/wiki/HTTP#Safe_method]: yes.
23+
# - {Idempotent}[https://en.wikipedia.org/wiki/HTTP#Idempotent_method]: yes.
24+
# - {Cacheable}[https://en.wikipedia.org/wiki/HTTP#Cacheable_method]: yes.
2525
#
2626
# Related:
2727
#
@@ -52,9 +52,9 @@ class Net::HTTP::Get < Net::HTTPRequest
5252
#
5353
# - Request body: optional.
5454
# - Response body: no.
55-
# - {Safe}[https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Safe_methods]: yes.
56-
# - {Idempotent}[https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Idempotent_methods]: yes.
57-
# - {Cacheable}[https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Cacheable_methods]: yes.
55+
# - {Safe}[https://en.wikipedia.org/wiki/HTTP#Safe_method]: yes.
56+
# - {Idempotent}[https://en.wikipedia.org/wiki/HTTP#Idempotent_method]: yes.
57+
# - {Cacheable}[https://en.wikipedia.org/wiki/HTTP#Cacheable_method]: yes.
5858
#
5959
# Related:
6060
#
@@ -87,9 +87,9 @@ class Net::HTTP::Head < Net::HTTPRequest
8787
#
8888
# - Request body: yes.
8989
# - Response body: yes.
90-
# - {Safe}[https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Safe_methods]: no.
91-
# - {Idempotent}[https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Idempotent_methods]: no.
92-
# - {Cacheable}[https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Cacheable_methods]: yes.
90+
# - {Safe}[https://en.wikipedia.org/wiki/HTTP#Safe_method]: no.
91+
# - {Idempotent}[https://en.wikipedia.org/wiki/HTTP#Idempotent_method]: no.
92+
# - {Cacheable}[https://en.wikipedia.org/wiki/HTTP#Cacheable_method]: yes.
9393
#
9494
# Related:
9595
#
@@ -123,9 +123,9 @@ class Net::HTTP::Post < Net::HTTPRequest
123123
#
124124
# - Request body: yes.
125125
# - Response body: yes.
126-
# - {Safe}[https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Safe_methods]: no.
127-
# - {Idempotent}[https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Idempotent_methods]: yes.
128-
# - {Cacheable}[https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Cacheable_methods]: no.
126+
# - {Safe}[https://en.wikipedia.org/wiki/HTTP#Safe_method]: no.
127+
# - {Idempotent}[https://en.wikipedia.org/wiki/HTTP#Idempotent_method]: yes.
128+
# - {Cacheable}[https://en.wikipedia.org/wiki/HTTP#Cacheable_method]: no.
129129
#
130130
# Related:
131131
#
@@ -157,9 +157,9 @@ class Net::HTTP::Put < Net::HTTPRequest
157157
#
158158
# - Request body: optional.
159159
# - Response body: yes.
160-
# - {Safe}[https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Safe_methods]: no.
161-
# - {Idempotent}[https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Idempotent_methods]: yes.
162-
# - {Cacheable}[https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Cacheable_methods]: no.
160+
# - {Safe}[https://en.wikipedia.org/wiki/HTTP#Safe_method]: no.
161+
# - {Idempotent}[https://en.wikipedia.org/wiki/HTTP#Idempotent_method]: yes.
162+
# - {Cacheable}[https://en.wikipedia.org/wiki/HTTP#Cacheable_method]: no.
163163
#
164164
# Related:
165165
#
@@ -189,9 +189,9 @@ class Net::HTTP::Delete < Net::HTTPRequest
189189
#
190190
# - Request body: optional.
191191
# - Response body: yes.
192-
# - {Safe}[https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Safe_methods]: yes.
193-
# - {Idempotent}[https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Idempotent_methods]: yes.
194-
# - {Cacheable}[https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Cacheable_methods]: no.
192+
# - {Safe}[https://en.wikipedia.org/wiki/HTTP#Safe_method]: yes.
193+
# - {Idempotent}[https://en.wikipedia.org/wiki/HTTP#Idempotent_method]: yes.
194+
# - {Cacheable}[https://en.wikipedia.org/wiki/HTTP#Cacheable_method]: no.
195195
#
196196
# Related:
197197
#
@@ -221,9 +221,9 @@ class Net::HTTP::Options < Net::HTTPRequest
221221
#
222222
# - Request body: no.
223223
# - Response body: yes.
224-
# - {Safe}[https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Safe_methods]: yes.
225-
# - {Idempotent}[https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Idempotent_methods]: yes.
226-
# - {Cacheable}[https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Cacheable_methods]: no.
224+
# - {Safe}[https://en.wikipedia.org/wiki/HTTP#Safe_method]: yes.
225+
# - {Idempotent}[https://en.wikipedia.org/wiki/HTTP#Idempotent_method]: yes.
226+
# - {Cacheable}[https://en.wikipedia.org/wiki/HTTP#Cacheable_method]: no.
227227
#
228228
# Related:
229229
#
@@ -256,9 +256,9 @@ class Net::HTTP::Trace < Net::HTTPRequest
256256
#
257257
# - Request body: yes.
258258
# - Response body: yes.
259-
# - {Safe}[https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Safe_methods]: no.
260-
# - {Idempotent}[https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Idempotent_methods]: no.
261-
# - {Cacheable}[https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Cacheable_methods]: no.
259+
# - {Safe}[https://en.wikipedia.org/wiki/HTTP#Safe_method]: no.
260+
# - {Idempotent}[https://en.wikipedia.org/wiki/HTTP#Idempotent_method]: no.
261+
# - {Cacheable}[https://en.wikipedia.org/wiki/HTTP#Cacheable_method]: no.
262262
#
263263
# Related:
264264
#

0 commit comments

Comments
 (0)