Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
more consistent delay examples
  • Loading branch information
kraih committed Jul 5, 2014
1 parent 7174bc3 commit ead8245
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/Mojo/IOLoop.pm
Expand Up @@ -490,7 +490,7 @@ will be passed along to L<Mojo::IOLoop::Delay/"steps">.
Mojo::IOLoop->delay(
sub {
my $delay = shift;
die 'Intentional error!';
die 'Intentional error';
},
sub {
my ($delay, @args) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojo/IOLoop/Delay.pm
Expand Up @@ -116,7 +116,7 @@ Mojo::IOLoop::Delay - Manage callbacks and control the flow of events
Mojo::IOLoop::Delay->new->steps(
sub {
my $delay = shift;
die 'Intentional error!';
die 'Intentional error';
},
sub {
my ($delay, @args) = @_;
Expand Down

0 comments on commit ead8245

Please sign in to comment.