Skip to content

Commit

Permalink
reflow POD for marcus
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Dec 19, 2011
1 parent 27ccf4d commit e7cfa06
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 19 deletions.
4 changes: 2 additions & 2 deletions Changes
@@ -1,7 +1,7 @@
This file documents the revision history for Perl extension Mojolicious.

2.39 2011-12-18 00:00:00
- Improved documentation. (vervain, sri)
2.39 2011-12-19 00:00:00
- Improved documentation. (marcus, vervain, sri)
- Fixed small argument bug in client method of Mojo::IOLoop.

2.38 2011-12-17 00:00:00
Expand Down
10 changes: 2 additions & 8 deletions lib/Mojo/Server/Daemon.pm
Expand Up @@ -36,15 +36,9 @@ my $SOCKET_RE = qr|

sub DESTROY {
my $self = shift;

# Clean up connections
return unless my $loop = $self->ioloop;
my $cs = $self->{connections} || {};
for my $id (keys %$cs) { $loop->drop($id) }

# Clean up listen sockets
return unless my $listen = $self->{listening};
for my $id (@$listen) { $loop->drop($id) }
$loop->drop($_) for keys %{$self->{connections} || {}};
$loop->drop($_) for @{$self->{listening} || []};
}

sub prepare_ioloop {
Expand Down
8 changes: 4 additions & 4 deletions lib/Mojolicious.pm
Expand Up @@ -646,21 +646,21 @@ change controller state, which includes request, response and stash.
=head2 Web
http://mojolicio.us
L<http://mojolicio.us>
=head2 IRC
#mojo on irc.perl.org
C<#mojo> on C<irc.perl.org>
=head2 Mailing-List
http://groups.google.com/group/mojolicious
L<http://groups.google.com/group/mojolicious>
=head1 DEVELOPMENT
=head2 Repository
http://github.com/kraih/mojo
L<http://github.com/kraih/mojo>
=head1 BUNDLED FILES
Expand Down
10 changes: 5 additions & 5 deletions lib/Mojolicious/Guides.pod
Expand Up @@ -13,11 +13,11 @@ latest updates.
=head1 LEARNING PERL

If you are new to Perl, we recommend
L<Learn Perl in 2 hours 30 minutes|http://qntm.org/files/perl/perl.html> for a
quick introduction, or the L<Modern Perl|http://onyxneon.com/books/modern_perl/>
book, freely available in many formats. Both are excellent introductions to the
language. For more books and documentation, Check out
L<learn.perl.org|http://learn.perl.org/>.
L<Learn Perl in 2 hours 30 minutes|http://qntm.org/files/perl/perl.html> for
a quick introduction, or the
L<Modern Perl|http://onyxneon.com/books/modern_perl/> book, freely available
in many formats. Both are excellent introductions to the language. For more
books and documentation, check out L<learn.perl.org|http://learn.perl.org/>.

=head1 TUTORIAL

Expand Down

0 comments on commit e7cfa06

Please sign in to comment.