Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix a few typos
  • Loading branch information
kraih committed Mar 30, 2016
1 parent ddbb0da commit 4546d77
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/Mojolicious/Guides/Contributing.pod
Expand Up @@ -63,7 +63,7 @@ changes and add new information to the
L<Mojolicious wiki|http://github.com/kraih/mojo/wiki>.

Pull requests with additions or changes to the documentation included in the
L<Mojolicious> distribution, follow the same rules as code contributions. Please
L<Mojolicious> distribution follow the same rules as code contributions. Please
don't send pull requests for overly simplistic changes, such as the addition of
a comma or semicolon.

Expand Down
6 changes: 3 additions & 3 deletions lib/Mojolicious/Guides/Routing.pod
Expand Up @@ -241,8 +241,8 @@ but content will not be sent with the response even if it is present.
# HEAD /test -> {controller => 'bar', action => 'test'}
$r->get('/test')->to(controller => 'bar', action => 'test');

You can also use the C<_method> query parameter to override the request method,
this can be very useful when submitting forms with browsers that only support
You can also use the C<_method> query parameter to override the request method.
This can be very useful when submitting forms with browsers that only support
C<GET> and C<POST>.

# PUT /stuff -> {controller => 'baz', action => 'stuff'}
Expand Down Expand Up @@ -418,7 +418,7 @@ which usually looks much better.
=head2 Named routes

Naming your routes will allow backreferencing in many methods and helpers
throughout the whole framework, most of them internally rely on
throughout the whole framework, most of which internally rely on
L<Mojolicious::Controller/"url_for"> for this.

# /foo/marcus -> {controller => 'foo', action => 'bar', user => 'marcus'}
Expand Down

0 comments on commit 4546d77

Please sign in to comment.