Skip to content

Commit

Permalink
fixed typo in begin example
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Oct 28, 2011
1 parent e1ef105 commit 3d1b3e4
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 @@ -673,7 +673,7 @@ Note that this method is EXPERIMENTAL and might change without warning!
my $delay = $loop->delay;
my $delay = $loop->delay(sub {...});
Get L<Mojo::IOLoop::Delay> object to help synchronizing events.
Get L<Mojo::IOLoop::Delay> object to synchronize events.
Note that this method is EXPERIMENTAL and might change without warning!
# Synchronize multiple events
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojo/IOLoop/Delay.pm
Expand Up @@ -92,7 +92,7 @@ C<end>.
my $delay = Mojo::IOLoop->delay;
Mojo::IOLoop->resolver->lookup('mojolicio.us' => $delay->begin);
my $address = $delay->start;
my $address = $delay->wait;
=head2 C<end>
Expand Down

0 comments on commit 3d1b3e4

Please sign in to comment.