Skip to content

Commit

Permalink
fixed example trees
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Mar 2, 2014
1 parent b257bf1 commit 71b1df6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Changes
@@ -1,5 +1,5 @@

4.86 2014-03-01
4.86 2014-03-02

4.85 2014-02-26
- Added next_tick method to Mojo::IOLoop and Mojo::Reactor.
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojo/DOM.pm
Expand Up @@ -860,7 +860,7 @@ Render this node and its content to HTML/XML.
=head2 tree
my $tree = $dom->tree;
$dom = $dom->tree(['root', ['text', 'foo']]);
$dom = $dom->tree(['root']);
Document Object Model. Note that this structure should only be used very
carefully since it is very dynamic.
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojo/DOM/CSS.pm
Expand Up @@ -566,7 +566,7 @@ L<Mojo::DOM::CSS> implements the following attributes.
=head2 tree
my $tree = $css->tree;
$css = $css->tree(['root', ['text', 'foo']]);
$css = $css->tree(['root');
Document Object Model. Note that this structure should only be used very
carefully since it is very dynamic.
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojo/DOM/HTML.pm
Expand Up @@ -312,7 +312,7 @@ L<Mojo::DOM::HTML> implements the following attributes.
=head2 tree
my $tree = $html->tree;
$html = $html->tree(['root', ['text', 'foo']]);
$html = $html->tree(['root']);
Document Object Model. Note that this structure should only be used very
carefully since it is very dynamic.
Expand Down
3 changes: 1 addition & 2 deletions lib/Mojolicious/Guides.pod
Expand Up @@ -137,8 +137,7 @@ Pure-Perl non-blocking I/O MongoDB driver.

=head1 REFERENCE

This is the fully documented class hierarchy of the L<Mojolicious>
distribution.
This is the class hierarchy of the L<Mojolicious> distribution.

=over 2

Expand Down

0 comments on commit 71b1df6

Please sign in to comment.