File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -526,7 +526,7 @@ field value.
526
526
Examples:
527
527
528
528
$header->header(MIME_Version => '1.0',
529
- User_Agent => 'My-Web-Client/0.01');
529
+ User_Agent => 'My-Web-Client/0.01');
530
530
$header->header(Accept => "text/html, text/plain, image/*");
531
531
$header->header(Accept => [qw(text/html text/plain image/*)]);
532
532
@accepts = $header->header('Accept'); # get multiple values
@@ -671,7 +671,7 @@ modified. I<E.g.>:
671
671
# check if document is more than 1 hour old
672
672
if (my $last_mod = $h->last_modified) {
673
673
if ($last_mod < time - 60*60) {
674
- ...
674
+ ...
675
675
}
676
676
}
677
677
Original file line number Diff line number Diff line change @@ -55,9 +55,9 @@ sub if_range {
55
55
# use it on C<ETag> and C<If-Range> entity tag values, because it will
56
56
# normalize them to the common form.
57
57
#
58
- # entity-tag = [ weak ] opaque-tag
59
- # weak = "W/"
60
- # opaque-tag = quoted-string
58
+ # entity-tag = [ weak ] opaque-tag
59
+ # weak = "W/"
60
+ # opaque-tag = quoted-string
61
61
62
62
sub _split_etag_list {
63
63
my (@val ) = @_ ;
You can’t perform that action at this time.
0 commit comments