Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
better descriptions for a few related methods
  • Loading branch information
kraih committed Nov 19, 2015
1 parent 375843b commit 9273033
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Changes
@@ -1,5 +1,5 @@

6.33 2015-11-19
6.33 2015-11-20
- Updated IO::Socket::IP requirement to 0.37 for certain bug fixes.
- Improved helper method in Mojolicious to replace already existing helpers
silently.
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojo/UserAgent/Transactor.pm
Expand Up @@ -326,7 +326,7 @@ implements the following new ones.
$t = $t->add_generator(foo => sub {...});
Register a new content generator.
Register a content generator.
=head2 endpoint
Expand Down
4 changes: 2 additions & 2 deletions lib/Mojolicious/Renderer.pm
Expand Up @@ -372,13 +372,13 @@ C<XMLHttpRequest>.
$renderer = $renderer->add_handler(epl => sub {...});
Register a new handler.
Register a handler.
=head2 add_helper
$renderer = $renderer->add_helper(url_for => sub {...});
Register a new helper.
Register a helper.
=head2 get_data_template
Expand Down
4 changes: 2 additions & 2 deletions lib/Mojolicious/Routes.pm
Expand Up @@ -288,13 +288,13 @@ and implements the following new ones.
$r = $r->add_condition(foo => sub {...});
Register a new condition.
Register a condition.
=head2 add_shortcut
$r = $r->add_shortcut(foo => sub {...});
Register a new shortcut.
Register a shortcut.
=head2 continue
Expand Down
4 changes: 2 additions & 2 deletions lib/Mojolicious/Routes/Route.pm
Expand Up @@ -290,8 +290,8 @@ implements the following new ones.
$r = $r->add_child(Mojolicious::Routes::Route->new);
Add a new child to this route, it will be automatically removed from its
current parent if necessary.
Add a child to this route, it will be automatically removed from its current
parent if necessary.
# Reattach route
$r->add_child($r->find('foo'));
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojolicious/Validator.pm
Expand Up @@ -115,7 +115,7 @@ implements the following new ones.
$validator = $validator->add_check(size => sub {...});
Register a new validation check.
Register a validation check.
=head2 validation
Expand Down

0 comments on commit 9273033

Please sign in to comment.