Skip to content

Commit

Permalink
link to default helpers
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Nov 20, 2015
1 parent 9273033 commit 0bccbd1
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions lib/Mojolicious.pm
Expand Up @@ -582,7 +582,9 @@ every request.
$app->helper(foo => sub {...});
Add or replace a helper that will be available as a method of the controller
object and the application object, as well as a function in C<ep> templates.
object and the application object, as well as a function in C<ep> templates. For
a full list of helpers that are available by default see
L<Mojolicious::Plugin::DefaultHelpers> and L<Mojolicious::Plugin::TagHelpers>.
# Helper
$app->helper(cache => sub { state $cache = {} });
Expand Down Expand Up @@ -645,9 +647,9 @@ L<Mojolicious> distribution see L<Mojolicious::Plugins/"PLUGINS">.
$app->start;
$app->start(@ARGV);
Start the command line interface for your application, for a full list of
commands available by default see L<Mojolicious::Commands/"COMMANDS">. Note
that the options C<-h>/C<--help>, C<--home> and C<-m>/C<--mode>, which are
Start the command line interface for your application. For a full list of
commands that are available by default see L<Mojolicious::Commands/"COMMANDS">.
Note that the options C<-h>/C<--help>, C<--home> and C<-m>/C<--mode>, which are
shared by all commands, will be parsed from C<@ARGV> during compile time.
# Always start daemon
Expand Down

0 comments on commit 0bccbd1

Please sign in to comment.