Skip to content

Commit

Permalink
a few small documentation tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Mar 19, 2016
1 parent 3864361 commit 90e46d1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/Mojo/Home.pm
Expand Up @@ -116,7 +116,7 @@ Path to C<lib> directory of application.
Portably list all files recursively in directory relative to the home directory.
# List layouts
say for @{$home->list_files('templates/layouts')};
say $home->rel_file($_) for @{$home->list_files('templates/layouts')};
These options are currently available:
Expand Down
8 changes: 4 additions & 4 deletions lib/Mojolicious/Guides/Tutorial.pod
Expand Up @@ -36,8 +36,8 @@ to generate a small example application.
=head2 Commands

Many different L<commands|Mojolicious::Commands/"COMMANDS"> are automatically
available from the command line. CGI and L<PSGI> environments can usually be
auto-detected and will just work without commands.
available from the command line. CGI and L<PSGI> environments can even be
detected and will usually just work without commands.

$ ./myapp.pl daemon
Server available at http://127.0.0.1:3000
Expand All @@ -55,8 +55,8 @@ auto-detected and will just work without commands.
...List of available commands (or automatically detected environment)...

A call to L<Mojolicious/"start"> (C<app-E<gt>start>), which starts the command
system, should usually be the last expression in your application, because its
return value can be significant.
system, should be the last expression in your application, because its return
value can be significant.

# Use @ARGV to pick a command
app->start;
Expand Down

0 comments on commit 90e46d1

Please sign in to comment.