Skip to content

Commit ee32045

Browse files
committed
Adjust comments per reviewer feedback.
1 parent 8c91fdb commit ee32045

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

lib/Mojo/DOM/CSS.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ sub _combinator {
7474
# "+" (immediately preceding siblings)
7575
return _sibling($selectors, $current, $tree, $scope, 1, ++$pos) if $c eq '+';
7676

77-
# " " or "\t" (ancestor)
77+
# " " (ancestor)
7878
return _ancestor($selectors, $current, $tree, $scope, 0, ++$pos);
7979
}
8080

t/mojo/dom.t

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3100,7 +3100,6 @@ subtest 'Unknown CSS selector' => sub {
31003100
like $@, qr/Unknown CSS selector: p\[/, 'right error';
31013101
};
31023102

3103-
# Github Issue #2024
31043103
subtest 'Handle tab in selector' => sub {
31053104
my $dom = Mojo::DOM->new(<<EOF);
31063105
<!DOCTYPE html>

0 commit comments

Comments
 (0)