Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fixed a few environment variable references
  • Loading branch information
kraih committed Feb 26, 2012
1 parent 1925cb9 commit 49aa394
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions lib/Mojo/Asset/File.pm
Expand Up @@ -210,8 +210,8 @@ necessary.
my $tmpdir = $file->tmpdir;
$file = $file->tmpdir('/tmp');
Temporary directory used to generate C<path>, defaults to the value of
C<MOJO_TMPDIR> or auto detection.
Temporary directory used to generate C<path>, defaults to the value of the
C<MOJO_TMPDIR> environment variable or auto detection.
=head1 METHODS
Expand Down
4 changes: 2 additions & 2 deletions lib/Mojo/Asset/Memory.pm
Expand Up @@ -118,8 +118,8 @@ automatically upgrade to a L<Mojo::Asset::File> object.
$mem = $mem->max_memory_size(1024);
Maximum asset size in bytes, only attempt upgrading to a L<Mojo::Asset::File>
object after reaching this limit, defaults to the value of
C<MOJO_MAX_MEMORY_SIZE> or C<262144>.
object after reaching this limit, defaults to the value of the
C<MOJO_MAX_MEMORY_SIZE> environment variable or C<262144>.
=head1 METHODS
Expand Down
4 changes: 2 additions & 2 deletions lib/Mojo/Content.pm
Expand Up @@ -475,8 +475,8 @@ Content headers, defaults to a L<Mojo::Headers> object.
$content = $content->max_leftover_size(1024);
Maximum size in bytes of buffer for pipelined HTTP requests, defaults to the
value of C<MOJO_MAX_LEFTOVER_SIZE> or C<262144>. Note that this attribute is
EXPERIMENTAL and might change without warning!
value of the C<MOJO_MAX_LEFTOVER_SIZE> environment variable or C<262144>.
Note that this attribute is EXPERIMENTAL and might change without warning!
=head2 C<relaxed>
Expand Down
6 changes: 3 additions & 3 deletions lib/Mojo/Headers.pm
Expand Up @@ -221,9 +221,9 @@ L<Mojo::Headers> implements the following attributes.
my $size = $headers->max_line_size;
$headers = $headers->max_line_size(1024);
Maximum line size in bytes, defaults to the value of C<MOJO_MAX_LINE_SIZE> or
C<10240>. Note that this attribute is EXPERIMENTAL and might change without
warning!
Maximum line size in bytes, defaults to the value of the
C<MOJO_MAX_LINE_SIZE> environment variable or C<10240>. Note that this
attribute is EXPERIMENTAL and might change without warning!
=head1 METHODS
Expand Down
4 changes: 2 additions & 2 deletions lib/Mojo/Message.pm
Expand Up @@ -582,8 +582,8 @@ to L<Mojo::JSON>.
my $size = $message->max_message_size;
$message = $message->max_message_size(1024);
Maximum message size in bytes, defaults to the value of
C<MOJO_MAX_MESSAGE_SIZE> or C<5242880>.
Maximum message size in bytes, defaults to the value of the
C<MOJO_MAX_MESSAGE_SIZE> environment variable or C<5242880>.
=head2 C<version>
Expand Down
4 changes: 2 additions & 2 deletions lib/Mojo/Transaction/WebSocket.pm
Expand Up @@ -433,8 +433,8 @@ Mask outgoing frames with XOR cipher and a random 32bit key.
my $size = $ws->max_websocket_size;
$ws = $ws->max_websocket_size(1024);
Maximum WebSocket message size in bytes, defaults to the value of
C<MOJO_MAX_WEBSOCKET_SIZE> or C<262144>.
Maximum WebSocket message size in bytes, defaults to the value of the
C<MOJO_MAX_WEBSOCKET_SIZE> environment variable or C<262144>.
=head1 METHODS
Expand Down

0 comments on commit 49aa394

Please sign in to comment.