Skip to content

Commit 7488d3d

Browse files
yoshikazusawahaarg
authored andcommitted
Fix few minor typos
1 parent 12013ba commit 7488d3d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/HTTP/Status.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ my %StatusCode = (
8484
503 => 'Service Unavailable',
8585
504 => 'Gateway Timeout',
8686
505 => 'HTTP Version Not Supported',
87-
506 => 'Variant Also Negotiates', # RFC 2295: Transparant Ngttn
87+
506 => 'Variant Also Negotiates', # RFC 2295: Transparent Ngttn
8888
507 => 'Insufficient Storage', # RFC 4918: WebDAV
8989
508 => 'Loop Detected', # RFC 5842: WebDAV bindings
9090
# 509

t/headers.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,7 @@ is(j($h->remove_header(':zap')), 'bang!|kapow!|shazam!');
492492
$h->push_header(':zap', 'whomp', ':foo', 'quux');
493493
is(j($h->header(':foo')), 'bar|quux');
494494

495-
# [RT#30579] IE6 appens "; length = NNNN" on If-Modified-Since (can we handle it)
495+
# [RT#30579] IE6 appends "; length = NNNN" on If-Modified-Since (can we handle it)
496496
$h = HTTP::Headers->new(
497497
if_modified_since => "Sat, 29 Oct 1994 19:43:31 GMT; length=34343"
498498
);

t/response.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ $freshness_lifetime = $r->freshness_lifetime;
6262
is($freshness_lifetime, 25);
6363
$r->remove_header('expires');
6464

65-
# Now we try the 'Age' header and the Cache-Contol:
65+
# Now we try the 'Age' header and the Cache-Control:
6666
$r->header('Age', 300);
6767
$r->push_header('Cache-Control', 'junk');
6868
$r->push_header(Cache_Control => 'max-age = 10');

0 commit comments

Comments
 (0)