Skip to content

Commit

Permalink
small documentation tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Jun 30, 2012
1 parent 1b97d48 commit 7145d69
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Changes
@@ -1,5 +1,5 @@

3.01 2012-06-28
3.01 2012-06-30
- Improved documentation. (diegok, sri)

3.0 2012-06-25
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojolicious/Lite.pm
Expand Up @@ -1012,7 +1012,7 @@ requests. See also the tutorial above for more argument variations.
my $route = under sub {...};
my $route = under '/:foo';
Generate bridge with L<Mojolicious::Routes::Route/"under">, to which all
Generate bridge route with L<Mojolicious::Routes::Route/"under">, to which all
following routes are automatically appended. See also the tutorial above for
more argument variations.
Expand Down
6 changes: 3 additions & 3 deletions lib/Mojolicious/Routes/Route.pm
Expand Up @@ -377,7 +377,7 @@ also the L<Mojolicious::Lite> tutorial for more argument variations.
my $bridge = $r->bridge('/:action', action => qr/\w+/);
my $bridge = $r->bridge(format => 0);
Generate bridge.
Generate bridge route.
my $auth = $r->bridge('/user')->to('user#auth');
$auth->get('/show')->to('#show');
Expand Down Expand Up @@ -586,8 +586,8 @@ Stringify the whole route.
my $route = $r->under(sub {...});
my $route = $r->under('/:foo');
Generate bridge. See also the L<Mojolicious::Lite> tutorial for more argument
variations.
Generate bridge route. See also the L<Mojolicious::Lite> tutorial for more
argument variations.
my $auth = $r->under('/user')->to('user#auth');
$auth->get('/show')->to('#show');
Expand Down
2 changes: 1 addition & 1 deletion lib/ojo.pm
Expand Up @@ -70,7 +70,7 @@ sub _request {

=head1 NAME
ojo - Fun Oneliners with Mojo!
ojo - Fun oneliners with Mojo!
=head1 SYNOPSIS
Expand Down

0 comments on commit 7145d69

Please sign in to comment.