File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -526,7 +526,7 @@ field value.
526526Examples:
527527
528528 $header->header(MIME_Version => '1.0',
529- User_Agent => 'My-Web-Client/0.01');
529+ User_Agent => 'My-Web-Client/0.01');
530530 $header->header(Accept => "text/html, text/plain, image/*");
531531 $header->header(Accept => [qw(text/html text/plain image/*)]);
532532 @accepts = $header->header('Accept'); # get multiple values
@@ -671,7 +671,7 @@ modified. I<E.g.>:
671671 # check if document is more than 1 hour old
672672 if (my $last_mod = $h->last_modified) {
673673 if ($last_mod < time - 60*60) {
674- ...
674+ ...
675675 }
676676 }
677677
Original file line number Diff line number Diff line change @@ -55,9 +55,9 @@ sub if_range {
5555# use it on C<ETag> and C<If-Range> entity tag values, because it will
5656# normalize them to the common form.
5757#
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
6161
6262sub _split_etag_list {
6363 my (@val ) = @_ ;
You can’t perform that action at this time.
0 commit comments