Skip to content

Commit

Permalink
updated some Mojo::IOLoop attribute descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Nov 15, 2011
1 parent dcff9df commit 3ec3125
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Changes
@@ -1,6 +1,6 @@
This file documents the revision history for Perl extension Mojolicious.

2.27 2011-11-15 00:00:00
2.27 2011-11-16 00:00:00
- Deprecated Mojo::IOLoop->connect in favor of Mojo::IOLoop->client.
- Deprecated Mojo::IOLoop->listen in favor of Mojo::IOLoop->server.
- Deprecated Mojo::IOLoop->connection_timeout in favor of
Expand Down
6 changes: 3 additions & 3 deletions lib/Mojo/IOLoop.pm
Expand Up @@ -512,7 +512,7 @@ L<Mojo::IOLoop> implements the following attributes.
$loop = $loop->client_class('Mojo::IOLoop::Client');
Class to be used for performing non-blocking socket connections with the
C<connect> method, defaults to L<Mojo::IOLoop::Client>.
C<client> method, defaults to L<Mojo::IOLoop::Client>.
Note that this attribute is EXPERIMENTAL and might change without warning!
=head2 C<connect_timeout>
Expand Down Expand Up @@ -601,7 +601,7 @@ Note that this attribute is EXPERIMENTAL and might change without warning!
my $class = $loop->server_class;
$loop = $loop->server_class('Mojo::IOLoop::Server');
Class to be used for accepting incoming connections with the C<listen>
Class to be used for accepting incoming connections with the C<server>
method, defaults to L<Mojo::IOLoop::Server>.
Note that this attribute is EXPERIMENTAL and might change without warning!
Expand Down Expand Up @@ -666,7 +666,7 @@ Note that this method is EXPERIMENTAL and might change without warning!
=head2 C<drop>
$loop = Mojo::IOLoop->drop($id)
$loop = Mojo::IOLoop->drop($id);
$loop = $loop->drop($id);
Drop anything with an id.
Expand Down

0 comments on commit 3ec3125

Please sign in to comment.