Navigation Menu

Skip to content

Commit

Permalink
better descriptions for object checks
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed May 26, 2015
1 parent 1b6fde6 commit 1300205
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Changes
@@ -1,5 +1,5 @@

6.12 2015-05-25
6.12 2015-05-27

6.11 2015-05-16
- Deprecated Mojo::Content::build_body and Mojo::Content::build_headers.
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojo/Asset.pm
Expand Up @@ -97,7 +97,7 @@ chunk size of C<131072> bytes (128KB). Meant to be overloaded in a subclass.
my $false = $asset->is_file;
False.
False, this is not a L<Mojo::Asset::File> object.
=head2 is_range
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojo/Asset/File.pm
Expand Up @@ -223,7 +223,7 @@ chunk size of C<131072> bytes (128KB).
my $true = $file->is_file;
True.
True, this is a L<Mojo::Asset::File> object.
=head2 move_to
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojo/Content.pm
Expand Up @@ -538,7 +538,7 @@ Check if buffer has exceeded L</"max_buffer_size">.
my $false = $content->is_multipart;
False.
False, this is not a L<Mojo::Content::MultiPart> object.
=head2 is_parsing_body
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojo/Content/MultiPart.pm
Expand Up @@ -286,7 +286,7 @@ dynamically.
my $true = $multi->is_multipart;
True.
True, this is a L<Mojo::Content::MultiPart> object.
=head2 new
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojo/Transaction.pm
Expand Up @@ -237,7 +237,7 @@ Check if transaction is finished.
my $false = $tx->is_websocket;
False.
False, this is not a L<Mojo::Transaction::WebSocket> object.
=head2 is_writing
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojo/Transaction/WebSocket.pm
Expand Up @@ -586,7 +586,7 @@ Check if WebSocket connection has been established yet.
my $true = $ws->is_websocket;
True.
True, this is a L<Mojo::Transaction::WebSocket> object.
=head2 kept_alive
Expand Down

1 comment on commit 1300205

@s1037989
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a really good update to the documentation!

Please sign in to comment.