Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
documentation tweaks
  • Loading branch information
kraih committed Oct 27, 2012
1 parent e3b5a66 commit 2aa87e4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions Changes
@@ -1,4 +1,7 @@

3.53 2012-10-27
- Improved documentation.

3.52 2012-10-26
- Added boolean shortcut support to Mojo::JSON.
- Added escape attribute to Mojo::Template. (jberger)
Expand Down
6 changes: 3 additions & 3 deletions lib/Mojo/Template.pm
Expand Up @@ -442,9 +442,9 @@ Perl lines can also be indented freely.
%= $block->('Baerbel')
%= $block->('Wolfgang')
L<Mojo::Template> templates work just like Perl subs (actually they get
compiled to a Perl sub internally). That means you can access arguments simply
via C<@_>.
L<Mojo::Template> templates work just like Perl subroutines (actually they get
compiled to a Perl subroutine internally). That means you can access arguments
simply via C<@_>.
% my ($foo, $bar) = @_;
% my $x = shift;
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojolicious.pm
Expand Up @@ -38,7 +38,7 @@ has static => sub { Mojolicious::Static->new };
has types => sub { Mojolicious::Types->new };

our $CODENAME = 'Rainbow';
our $VERSION = '3.52';
our $VERSION = '3.53';

sub AUTOLOAD {
my $self = shift;
Expand Down

0 comments on commit 2aa87e4

Please sign in to comment.