Skip to content

Commit

Permalink
small documentation tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Nov 16, 2011
1 parent 2cd1fc9 commit 80036e8
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion lib/Mojo/IOLoop.pm
Expand Up @@ -764,7 +764,7 @@ Note that this method is EXPERIMENTAL and might change without warning!
my $timeout = $loop->timeout($id);
$loop = $loop->timeout($id => 45);
Maximum amount of time in seconds a connection can be inactive before being
Maximum amount of time in seconds a connection can be inactive before getting
dropped, defaults to C<15>.
=head2 C<timer>
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojo/IOLoop/Client.pm
Expand Up @@ -234,7 +234,7 @@ Port to connect to.
=item C<timeout>
Maximum time in seconds establishing connection may take.
Maximum amount of time in seconds establishing connection may take.
=item C<tls>
Expand Down
4 changes: 2 additions & 2 deletions lib/Mojo/Server/Daemon.pm
Expand Up @@ -398,7 +398,7 @@ singleton.
my $keep_alive_timeout = $daemon->keep_alive_timeout;
$daemon = $daemon->keep_alive_timeout(5);
Maximum amount of time in seconds a connection can be inactive before being
Maximum amount of time in seconds a connection can be inactive before getting
dropped, defaults to C<15>.
=head2 C<listen>
Expand Down Expand Up @@ -451,7 +451,7 @@ User for the server process.
$server = $server->websocket_timeout(300);
Maximum amount of time in seconds a WebSocket connection can be inactive
before being dropped, defaults to C<300>.
before getting dropped, defaults to C<300>.
=head1 METHODS
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojo/Server/Hypnotoad.pm
Expand Up @@ -614,7 +614,7 @@ Username for worker processes.
websocket_timeout => 150
Maximum amount of time in seconds a WebSocket connection can be inactive
before being dropped, defaults to C<300>.
before getting dropped, defaults to C<300>.
=head2 C<workers>
Expand Down
4 changes: 2 additions & 2 deletions lib/Mojo/UserAgent.pm
Expand Up @@ -698,7 +698,7 @@ object.
my $keep_alive_timeout = $ua->keep_alive_timeout;
$ua = $ua->keep_alive_timeout(15);
Maximum amount of time in seconds a connection can be inactive before being
Maximum amount of time in seconds a connection can be inactive before getting
dropped, defaults to C<15>.
=head2 C<key>
Expand Down Expand Up @@ -762,7 +762,7 @@ Note that this attribute is EXPERIMENTAL and might change without warning!
$ua = $ua->websocket_timeout(300);
Maximum amount of time in seconds a WebSocket connection can be inactive
before being dropped, defaults to C<300>.
before getting dropped, defaults to C<300>.
=head1 METHODS
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojolicious/Guides/Rendering.pod
Expand Up @@ -507,7 +507,7 @@ This chain could go on and on to allow a very high level of template reuse.
=head2 Memorizing template blocks

Compiled templates are always cached in memory, but with the C<memorize>
helper you can go one step further and prevent template blocks from being
helper you can go one step further and prevent template blocks from getting
executed more than once.

%= memorize begin
Expand Down

0 comments on commit 80036e8

Please sign in to comment.