diff --git a/Changes b/Changes index 1029f2d2f0..2c7c85699a 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,6 @@ This file documents the revision history for Perl extension Mojolicious. -2.52 2012-02-21 00:00:00 +2.52 2012-02-22 00:00:00 - Removed experimental status from config method in Mojo. - Renamed to_psgi method in Mojo::Server::PSGI to to_psgi_app. - Improved documentation. diff --git a/lib/Mojo.pm b/lib/Mojo.pm index 3b0cd14fc1..04764b1346 100644 --- a/lib/Mojo.pm +++ b/lib/Mojo.pm @@ -164,7 +164,7 @@ Application configuration. =head2 C - $tx = $app->handler($tx); + $app->handler($tx); The handler is the main entry point to your application or framework and will be called for each new transaction, which will usually be a diff --git a/lib/Mojolicious.pm b/lib/Mojolicious.pm index 86b966c97b..a1f711b1a1 100644 --- a/lib/Mojolicious.pm +++ b/lib/Mojolicious.pm @@ -404,7 +404,8 @@ object. =head2 C - $tx = $app->handler($tx); + $app->handler($tx); + $app->handler($c); Sets up the default controller and calls process for every request.