Skip to content

Commit

Permalink
consistent quoting style
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Oct 29, 2013
1 parent 26d4110 commit 5cf86ba
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions Changes
@@ -1,4 +1,6 @@

4.53 2013-10-30

4.52 2013-10-29
- Improved Mojo::EventEmitter to allow unhandled error events to be fatal.
(powerman, sri)
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojolicious.pm
Expand Up @@ -43,7 +43,7 @@ has types => sub { Mojolicious::Types->new };
has validator => sub { Mojolicious::Validator->new };

our $CODENAME = 'Top Hat';
our $VERSION = '4.52';
our $VERSION = '4.53';

sub AUTOLOAD {
my $self = shift;
Expand Down
2 changes: 1 addition & 1 deletion t/mojo/ioloop.t
Expand Up @@ -262,7 +262,7 @@ is $loop->max_accepts, 1, 'right value';
local *STDERR;
open STDERR, '>', \my $err;
my $loop = Mojo::IOLoop->new;
$loop->timer(0 => sub { die "Bye!" });
$loop->timer(0 => sub { die 'Bye!' });
$loop->start;
like $err, qr/Bye!/, 'right error';
}
Expand Down

0 comments on commit 5cf86ba

Please sign in to comment.