Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
link to functions in tutorial
  • Loading branch information
kraih committed Aug 29, 2014
1 parent 138de81 commit ca4efaf
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions lib/Mojolicious/Lite.pm
Expand Up @@ -93,9 +93,9 @@ applications.
=head2 Hello World
A simple Hello World application can look like this, L<strict>, L<warnings>,
L<utf8> and Perl 5.10 features are automatically enabled and a few functions
imported when you use L<Mojolicious::Lite>, turning your script into a full
featured web application.
L<utf8> and Perl 5.10 features are automatically enabled and a few
L</"FUNCTIONS"> imported when you use L<Mojolicious::Lite>, turning your
script into a full featured web application.
#!/usr/bin/env perl
use Mojolicious::Lite;
Expand Down Expand Up @@ -1022,7 +1022,12 @@ argument variations.
my $app = app;
The L<Mojolicious::Lite> application.
Returns the L<Mojolicious::Lite> application object, which is a subclass of
L<Mojolicious>.
# Use all the available attributes and methods
app->log->level('error');
app->defaults(foo => 'bar');
=head2 del
Expand Down

0 comments on commit ca4efaf

Please sign in to comment.