Skip to content

Commit

Permalink
fixed formatting of selector list
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Jul 10, 2014
1 parent 1d31c5b commit d44a213
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Changes
@@ -1,5 +1,5 @@

5.13 2014-07-09
5.13 2014-07-10
- Improved HTML5.1 compliance of Mojo::DOM::HTML.
- Fixed Mojo::Reactor::Poll bug where watchers were active after they have
been removed. (jberger)
Expand Down
8 changes: 4 additions & 4 deletions lib/Mojo/DOM/CSS.pm
Expand Up @@ -507,16 +507,16 @@ An C<E> element, only sibling of its type.
=head2 E.warning
my $warning = $css->select('div.warning');
An C<E> element whose class is "warning".
=head2 E#myid
my $warning = $css->select('div.warning');
my $foo = $css->select('div#foo');
=head2 E#myid
An C<E> element with C<ID> equal to "myid".
my $foo = $css->select('div#foo');
=head2 E:not(s)
An C<E> element that does not match simple selector C<s>.
Expand Down

0 comments on commit d44a213

Please sign in to comment.