Skip to content

Commit

Permalink
slightly more consistent examples
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Jun 19, 2015
1 parent bf126d8 commit 7660450
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.13 2015-06-18
6.13 2015-06-19

6.12 2015-06-18
- Welcome to the Mojolicious core team Dan Book.
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojo/Asset.pm
Expand Up @@ -95,7 +95,7 @@ chunk size of C<131072> bytes (128KB). Meant to be overloaded in a subclass.
=head2 is_file
my $false = $asset->is_file;
my $bool = $asset->is_file;
False, this is not a L<Mojo::Asset::File> object.
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojo/Asset/File.pm
Expand Up @@ -221,7 +221,7 @@ chunk size of C<131072> bytes (128KB).
=head2 is_file
my $true = $file->is_file;
my $bool = $file->is_file;
True, this is a L<Mojo::Asset::File> object.
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojo/Content.pm
Expand Up @@ -536,7 +536,7 @@ Check if buffer has exceeded L</"max_buffer_size">.
=head2 is_multipart
my $false = $content->is_multipart;
my $bool = $content->is_multipart;
False, this is not a L<Mojo::Content::MultiPart> object.
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojo/Content/MultiPart.pm
Expand Up @@ -284,7 +284,7 @@ dynamically.
=head2 is_multipart
my $true = $multi->is_multipart;
my $bool = $multi->is_multipart;
True, this is a L<Mojo::Content::MultiPart> object.
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojo/Transaction.pm
Expand Up @@ -235,7 +235,7 @@ Check if transaction is finished.
=head2 is_websocket
my $false = $tx->is_websocket;
my $bool = $tx->is_websocket;
False, this is not a L<Mojo::Transaction::WebSocket> object.
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojo/Transaction/WebSocket.pm
Expand Up @@ -584,7 +584,7 @@ Check if WebSocket connection has been established yet.
=head2 is_websocket
my $true = $ws->is_websocket;
my $bool = $ws->is_websocket;
True, this is a L<Mojo::Transaction::WebSocket> object.
Expand Down

0 comments on commit 7660450

Please sign in to comment.