Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
a few more documentation tweaks
  • Loading branch information
kraih committed Aug 13, 2012
1 parent f4a860c commit eccfc52
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/Mojo/DOM.pm
Expand Up @@ -443,7 +443,7 @@ use it for validation.
=head1 CASE SENSITIVITY
L<Mojo::DOM> defaults to HTML5 semantics, that means all tags and attributes
L<Mojo::DOM> defaults to HTML semantics, that means all tags and attributes
are lowercased and selectors need to be lowercase as well.
my $dom = Mojo::DOM->new('<P ID="greeting">Hi!</P>');
Expand All @@ -462,7 +462,7 @@ XML detection can also be disabled with the C<xml> method.
# Force XML semantics
$dom->xml(1);
# Force HTML5 semantics
# Force HTML semantics
$dom->xml(0);
=head1 METHODS
Expand Down Expand Up @@ -532,7 +532,7 @@ Element attributes.
my $charset = $dom->charset;
$dom = $dom->charset('UTF-8');
Charset used for decoding and encoding HTML5/XML.
Charset used for decoding and encoding HTML/XML.
=head2 C<children>
Expand Down

0 comments on commit eccfc52

Please sign in to comment.