Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
more links
  • Loading branch information
kraih committed Jan 22, 2014
1 parent 86dcdd0 commit a309f75
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions lib/Mojo/Collection.pm
Expand Up @@ -300,8 +300,8 @@ Stringify elements in collection and L</"join"> them with newlines.
=head1 ELEMENT METHODS
In addition to the methods above, you can also call methods provided by all
elements in the collection directly and create a new collection from the
In addition to the L</"METHODS"> above, you can also call methods provided by
all elements in the collection directly and create a new collection from the
results, similar to L</"pluck">.
push @$collection, Mojo::DOM->new("<div><h1>$_</h1></div>") for 1 .. 9;
Expand Down
4 changes: 2 additions & 2 deletions lib/Mojo/DOM.pm
Expand Up @@ -816,8 +816,8 @@ Alias for L</"to_xml">.
=head1 CHILD ELEMENTS
In addition to the methods above, many child elements are also automatically
available as object methods, which return a L<Mojo::DOM> or
In addition to the L</"METHODS"> above, many child elements are also
automatically available as object methods, which return a L<Mojo::DOM> or
L<Mojo::Collection> object, depending on number of children.
say $dom->p->text;
Expand Down
4 changes: 2 additions & 2 deletions lib/Mojolicious.pm
Expand Up @@ -633,8 +633,8 @@ startup. Meant to be overloaded in a subclass.
=head1 HELPERS
In addition to the attributes and methods above you can also call helpers on
L<Mojolicious> objects. This includes all helpers from
In addition to the L</"ATTRIBUTES"> and L</"METHODS"> above you can also call
helpers on L<Mojolicious> objects. This includes all helpers from
L<Mojolicious::Plugin::DefaultHelpers> and L<Mojolicious::Plugin::TagHelpers>.
Note that application helpers are always called with a new default controller
object, so they can't depend on or change controller state, which includes
Expand Down
4 changes: 2 additions & 2 deletions lib/Mojolicious/Controller.pm
Expand Up @@ -1002,8 +1002,8 @@ You can call L</"finish"> at any time to end the stream.
=head1 HELPERS
In addition to the attributes and methods above you can also call helpers on
L<Mojolicious::Controller> objects. This includes all helpers from
In addition to the L</"ATTRIBUTES"> and L</"METHODS"> above you can also call
helpers on L<Mojolicious::Controller> objects. This includes all helpers from
L<Mojolicious::Plugin::DefaultHelpers> and L<Mojolicious::Plugin::TagHelpers>.
$c->layout('green');
Expand Down
4 changes: 2 additions & 2 deletions lib/Mojolicious/Routes/Route.pm
Expand Up @@ -580,8 +580,8 @@ L<Mojolicious::Lite> tutorial for more argument variations.
=head1 SHORTCUTS
In addition to the attributes and methods above you can also call shortcuts
on L<Mojolicious::Routes::Route> objects.
In addition to the L</"ATTRIBUTES"> and L</"METHODS"> above you can also call
shortcuts on L<Mojolicious::Routes::Route> objects.
$r->root->add_shortcut(firefox => sub {
my ($r, $path) = @_;
Expand Down
6 changes: 3 additions & 3 deletions lib/Mojolicious/Validator/Validation.pm
Expand Up @@ -227,9 +227,9 @@ empty string.
=head1 CHECKS
In addition to the methods above, you can also call validation checks provided
by L<Mojolicious::Validator> on L<Mojolicious::Validator::Validation> objects,
similar to L</"check">.
In addition to the L</"ATTRIBUTES"> and L</"METHODS"> above, you can also call
validation checks provided by L<Mojolicious::Validator> on
L<Mojolicious::Validator::Validation> objects, similar to L</"check">.
$validation->required('foo')->size(2, 5)->like(qr/^[A-Z]/);
$validation->optional('bar')->equal_to('foo');
Expand Down

0 comments on commit a309f75

Please sign in to comment.