Skip to content

Commit b6d8da0

Browse files
committed
Untab manually in comments
1 parent 8dc5646 commit b6d8da0

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

lib/HTTP/Headers.pm

+2-2
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ field value.
526526
Examples:
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

lib/HTTP/Headers/ETag.pm

+3-3
Original file line numberDiff line numberDiff 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

6262
sub _split_etag_list {
6363
my (@val) = @_;

0 commit comments

Comments
 (0)