Skip to content

Commit

Permalink
do not link to the Mojolicious class when referring to the whole dist…
Browse files Browse the repository at this point in the history
…ribution
  • Loading branch information
kraih committed Sep 4, 2013
1 parent a09aff4 commit 954fb2c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
2 changes: 2 additions & 0 deletions Changes
@@ -1,4 +1,6 @@

4.32 2013-09-05

4.31 2013-09-04
- Deprecated mode specific methods in application class.
sub production_mode {...}
Expand Down
18 changes: 9 additions & 9 deletions lib/Mojolicious.pm
Expand Up @@ -41,7 +41,7 @@ has static => sub { Mojolicious::Static->new };
has types => sub { Mojolicious::Types->new };

our $CODENAME = 'Top Hat';
our $VERSION = '4.31';
our $VERSION = '4.32';

sub AUTOLOAD {
my $self = shift;
Expand Down Expand Up @@ -260,7 +260,7 @@ L<Mojolicious::Controller>.
The operating mode for your application, defaults to a value from the
MOJO_MODE and PLACK_ENV environment variables or C<development>. Right before
calling C<startup>, L<Mojolicious> will pick up the current mode, name the log
calling C<startup>, Mojolicious will pick up the current mode, name the log
file after it and raise the log level from C<debug> to C<info> if it has a
value other than C<development>.
Expand Down Expand Up @@ -436,8 +436,8 @@ and the application object, as well as a function in C<ep> templates.
$app->hook(after_dispatch => sub {...});
Extend L<Mojolicious> with hooks, which allow code to be shared with all
requests indiscriminately.
Extend Mojolicious with hooks, which allow code to be shared with all requests
indiscriminately.
# Dispatchers will not run if there's already a response code defined
$app->hook(before_dispatch => sub {
Expand Down Expand Up @@ -585,8 +585,8 @@ the default controller object)
$app->plugin('MyApp::Plugin::SomeThing', foo => 23);
$app->plugin('MyApp::Plugin::SomeThing', {foo => 23});
Load a plugin, for a full list of example plugins included in the
L<Mojolicious> distribution see L<Mojolicious::Plugins/"PLUGINS">.
Load a plugin, for a full list of example plugins included in the Mojolicious
distribution see L<Mojolicious::Plugins/"PLUGINS">.
=head2 start
Expand Down Expand Up @@ -624,8 +624,8 @@ request, response and stash.
=head1 BUNDLED FILES
The L<Mojolicious> distribution includes a few files with different licenses
that have been bundled for internal use.
The Mojolicious distribution includes a few files with different licenses that
have been bundled for internal use.
=head2 Mojolicious Artwork
Expand All @@ -649,7 +649,7 @@ L<http://www.apache.org/licenses/LICENSE-2.0>.
=head1 CODE NAMES
Every major release of L<Mojolicious> has a code name, these are the ones that
Every major release of Mojolicious has a code name, these are the ones that
have been used in the past.
4.0, C<Top Hat> (u1F3A9)
Expand Down

0 comments on commit 954fb2c

Please sign in to comment.