Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Mojo::IOLoop documentation tweak
  • Loading branch information
kraih committed Nov 26, 2012
1 parent a6d4120 commit d2b538c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions Changes
@@ -1,4 +1,7 @@

3.63 2012-11-27
- Improved documentation.

3.62 2012-11-26
- Improved compatibility with IO::Socket::SSL 1.79.
- Improved encode/decode performance in Mojo::Util by using a cache.
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojo/IOLoop.pm
Expand Up @@ -588,7 +588,7 @@ event loop can be restarted by running C<start> again.
my $stream = Mojo::IOLoop->stream($id);
my $stream = $loop->stream($id);
my $id = $loop->stream($stream);
my $id = $loop->stream(Mojo::IOLoop::Stream->new);
Get L<Mojo::IOLoop::Stream> object for id or turn object into a connection.
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojolicious.pm
Expand Up @@ -38,7 +38,7 @@ has static => sub { Mojolicious::Static->new };
has types => sub { Mojolicious::Types->new };

our $CODENAME = 'Rainbow';
our $VERSION = '3.62';
our $VERSION = '3.63';

sub AUTOLOAD {
my $self = shift;
Expand Down

0 comments on commit d2b538c

Please sign in to comment.