Skip to content

Commit

Permalink
fix typo in comment
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Mar 19, 2015
1 parent 298ee90 commit 55ba812
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Mojo/DOM/CSS.pm
Expand Up @@ -18,9 +18,9 @@ my $PSEUDO_CLASS_RE = qr/(?::([\w\-]+)(?:\(((?:\([^)]+\)|[^)])+)\))?)/;
my $TOKEN_RE = qr/
(\s*,\s*)? # Separator
((?:[^[\\:\s,>+~]|$ESCAPE_RE\s?)+)? # Element
($PSEUDO_CLASS_RE*)? # Pseudoclass
($PSEUDO_CLASS_RE*)? # Pseudo-class
((?:$ATTR_RE)*)? # Attributes
($PSEUDO_CLASS_RE*)? # Pseudoclass (again)
($PSEUDO_CLASS_RE*)? # Pseudo-class (again)
(?:\s*([>+~]))? # Combinator
/x;

Expand Down

0 comments on commit 55ba812

Please sign in to comment.