Navigation Menu

Skip to content

Commit

Permalink
fixed typos
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Dec 3, 2010
1 parent a049780 commit a27c9c6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.pod
Expand Up @@ -62,7 +62,7 @@ Web development for humans, making hard things possible and everything fun.

use Mojolicious::Lite;

get '/hello' => sub { shift->render(text => 'Hello World!') }
get '/hello' => sub { shift->render(text => 'Hello World!') };

get '/time' => 'clock';

Expand Down
2 changes: 1 addition & 1 deletion lib/Mojolicious.pm
Expand Up @@ -384,7 +384,7 @@ Web development for humans, making hard things possible and everything fun.
use Mojolicious::Lite;
get '/hello' => sub { shift->render(text => 'Hello World!') }
get '/hello' => sub { shift->render(text => 'Hello World!') };
get '/time' => 'clock';
Expand Down

0 comments on commit a27c9c6

Please sign in to comment.