Skip to content

Commit

Permalink
more links
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Feb 25, 2015
1 parent fdffd33 commit 46e21e7
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 11 deletions.
3 changes: 2 additions & 1 deletion lib/Mojo/Asset.pm
Expand Up @@ -42,7 +42,8 @@ Mojo::Asset - HTTP content storage base class
=head1 DESCRIPTION
L<Mojo::Asset> is an abstract base class for HTTP content storage.
L<Mojo::Asset> is an abstract base class for HTTP content storage backends,
like L<Mojo::Asset::File> and L<Mojo::Asset::Memory>.
=head1 EVENTS
Expand Down
5 changes: 3 additions & 2 deletions lib/Mojo/Content.pm
Expand Up @@ -317,9 +317,10 @@ Mojo::Content - HTTP content base class
=head1 DESCRIPTION
L<Mojo::Content> is an abstract base class for HTTP content based on
L<Mojo::Content> is an abstract base class for HTTP content containers based on
L<RFC 7230|http://tools.ietf.org/html/rfc7230> and
L<RFC 7231|http://tools.ietf.org/html/rfc7231>.
L<RFC 7231|http://tools.ietf.org/html/rfc7231>, like
L<Mojo::Content::MultiPart> and L<Mojo::Content::Single>.
=head1 EVENTS
Expand Down
5 changes: 3 additions & 2 deletions lib/Mojo/Cookie.pm
Expand Up @@ -27,8 +27,9 @@ Mojo::Cookie - HTTP cookie base class
=head1 DESCRIPTION
L<Mojo::Cookie> is an abstract base class for HTTP cookies based on
L<RFC 6265|http://tools.ietf.org/html/rfc6265>.
L<Mojo::Cookie> is an abstract base class for HTTP cookie containers based on
L<RFC 6265|http://tools.ietf.org/html/rfc6265>, like
L<Mojolicious::Cookie::Request> and L<Mojolicious::Cookie::Response>.
=head1 ATTRIBUTES
Expand Down
5 changes: 3 additions & 2 deletions lib/Mojo/Message.pm
Expand Up @@ -305,10 +305,11 @@ Mojo::Message - HTTP message base class
=head1 DESCRIPTION
L<Mojo::Message> is an abstract base class for HTTP messages based on
L<Mojo::Message> is an abstract base class for HTTP message containers based on
L<RFC 7230|http://tools.ietf.org/html/rfc7230>,
L<RFC 7231|http://tools.ietf.org/html/rfc7231> and
L<RFC 2388|http://tools.ietf.org/html/rfc2388>.
L<RFC 2388|http://tools.ietf.org/html/rfc2388>, like L<Mojo::Message::Request>
and L<Mojo::Message::Response>.
=head1 EVENTS
Expand Down
3 changes: 2 additions & 1 deletion lib/Mojo/Reactor.pm
Expand Up @@ -52,7 +52,8 @@ Mojo::Reactor - Low-level event reactor base class
=head1 DESCRIPTION
L<Mojo::Reactor> is an abstract base class for low-level event reactors.
L<Mojo::Reactor> is an abstract base class for low-level event reactors, like
L<Mojo::Reactor::EV> and L<Mojo::Reactor::Poll>.
=head1 EVENTS
Expand Down
7 changes: 5 additions & 2 deletions lib/Mojo/Server.pm
Expand Up @@ -100,7 +100,7 @@ sub _error { $_[0]->app->log->error($_[1]) and croak $_[1] }
=head1 NAME
Mojo::Server - HTTP server base class
Mojo::Server - HTTP/WebSocket server base class
=head1 SYNOPSIS
Expand All @@ -119,7 +119,10 @@ Mojo::Server - HTTP server base class
=head1 DESCRIPTION
L<Mojo::Server> is an abstract HTTP server base class.
L<Mojo::Server> is an abstract base class for HTTP/WebSocket servers and server
interfaces, like L<Mojo::Server::CGI>, L<Mojo::Server::Daemon>,
L<Mojo::Server::Hypnotoad>, L<Mojo::Server::Morbo>, L<Mojo::Server::Prefork>
and L<Mojo::Server::PSGI>.
=head1 EVENTS
Expand Down
3 changes: 2 additions & 1 deletion lib/Mojo/Transaction.pm
Expand Up @@ -89,7 +89,8 @@ Mojo::Transaction - Transaction base class
=head1 DESCRIPTION
L<Mojo::Transaction> is an abstract base class for transactions.
L<Mojo::Transaction> is an abstract base class for transactions, like
L<Mojo::Transaction::HTTP> and L<Mojo::Transaction::WebSocket>.
=head1 EVENTS
Expand Down

0 comments on commit 46e21e7

Please sign in to comment.