Skip to content

Commit

Permalink
mention which methods set up hooks
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed May 6, 2013
1 parent 4ecb40f commit cff43a5
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion lib/Mojolicious.pm
Expand Up @@ -376,7 +376,8 @@ new ones.
Construct a new L<Mojolicious> application, calling C<${mode}_mode> and
C<startup> in the process. Will automatically detect your home directory and
set up logging based on your current operating mode. Also sets up the
renderer, static file server and a default set of plugins.
renderer, static file server, a default set of plugins and an
C<around_dispatch> hook with the default exception handling.
=head2 build_tx
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojolicious/Plugin/Charset.pm
Expand Up @@ -53,7 +53,7 @@ L<Mojolicious::Plugin> and implements the following new ones.
$plugin->register(Mojolicious->new, {charset => 'Shift_JIS'});
Register hooks in L<Mojolicious> application.
Register C<before_dispatch> hook in L<Mojolicious> application.
=head1 SEE ALSO
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojolicious/Plugin/PoweredBy.pm
Expand Up @@ -52,7 +52,7 @@ L<Mojolicious::Plugin> and implements the following new ones.
$plugin->register(Mojolicious->new);
$plugin->register(Mojolicious->new, {name => 'MyFramework 1.0'});
Register hooks in L<Mojolicious> application.
Register C<before_dispatch> hook in L<Mojolicious> application.
=head1 SEE ALSO
Expand Down
3 changes: 2 additions & 1 deletion lib/Mojolicious/Plugin/RequestTimer.pm
Expand Up @@ -71,7 +71,8 @@ L<Mojolicious::Plugin> and implements the following new ones.
$plugin->register(Mojolicious->new);
Register hooks in L<Mojolicious> application.
Register C<before_routes> and C<after_dispatch> hooks in L<Mojolicious>
application.
=head1 SEE ALSO
Expand Down

0 comments on commit cff43a5

Please sign in to comment.