Skip to content

Commit

Permalink
fixed indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Sep 12, 2011
1 parent d1e6e4b commit de27b42
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Changes
@@ -1,6 +1,6 @@
This file documents the revision history for Perl extension Mojolicious.

1.98 2011-09-11 00:00:00
1.98 2011-09-12 00:00:00
- Removed Mojo::Server::FastCGI so it can be maintained as a separate
distribution.
- Added EXPERIMENTAL mojo_lib_dir and slurp_rel_file methods to
Expand Down
8 changes: 4 additions & 4 deletions lib/Mojolicious/Guides/Cookbook.pod
Expand Up @@ -160,13 +160,13 @@ You can use middleware right in your application.
use Plack::Builder;

get '/welcome' => sub {
my $self = shift;
$self->render(text => 'Hello Mojo!');
my $self = shift;
$self->render(text => 'Hello Mojo!');
};

builder {
enable 'Deflater';
app->start;
enable 'Deflater';
app->start;
};

For more control you can even use deployment specific wrappers like
Expand Down

0 comments on commit de27b42

Please sign in to comment.