Skip to content

Commit

Permalink
small typo fix in Tenjin::Template
Browse files Browse the repository at this point in the history
  • Loading branch information
ido50 committed May 17, 2016
1 parent 40fd0a0 commit f1b62d7
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion lib/Tenjin.pm
Expand Up @@ -10,7 +10,7 @@ use Tenjin::Context;
use Tenjin::Template;
use Tenjin::Preprocessor;

our $VERSION = "1.000000";
our $VERSION = "1.000001";
$VERSION = eval $VERSION;

our $USE_STRICT = 0;
Expand Down
2 changes: 1 addition & 1 deletion lib/Tenjin/Context.pm
Expand Up @@ -5,7 +5,7 @@ use warnings;
use Tenjin::Util;
use Carp;

our $VERSION = "1.000000";
our $VERSION = "1.000001";
$VERSION = eval $VERSION;

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/Tenjin/Preprocessor.pm
Expand Up @@ -3,7 +3,7 @@ package Tenjin::Preprocessor;
use strict;
use warnings;

our $VERSION = "1.000000";
our $VERSION = "1.000001";
$VERSION = eval $VERSION;

our @ISA = ('Tenjin::Template');
Expand Down
4 changes: 2 additions & 2 deletions lib/Tenjin/Template.pm
Expand Up @@ -5,7 +5,7 @@ use warnings;
use Fcntl qw/:flock/;
use Carp;

our $VERSION = "1.000000";
our $VERSION = "1.000001";
$VERSION = eval $VERSION;

=head1 NAME
Expand Down Expand Up @@ -106,7 +106,7 @@ sub new {
=head2 render( [$_context] )
Renders the template, possibly with a context hash-ref, and returns the
rendered output. If errors have occured when rendering the template (which
rendered output. If errors have occurred when rendering the template (which
might happen since templates have and are Perl code), then this method
will croak.
Expand Down
2 changes: 1 addition & 1 deletion lib/Tenjin/Util.pm
Expand Up @@ -4,7 +4,7 @@ use strict;
use warnings;
use HTML::Entities;

our $VERSION = "1.000000";
our $VERSION = "1.000001";
$VERSION = eval $VERSION;

=head1 NAME
Expand Down

0 comments on commit f1b62d7

Please sign in to comment.