Skip to content

Commit

Permalink
avoid misleading descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Jan 23, 2016
1 parent f0cedc5 commit 0cab62d
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Changes
@@ -1,5 +1,5 @@

6.42 2016-01-21
6.42 2016-01-23

6.41 2016-01-20
- Added support for validation filters.
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojo/Headers.pm
Expand Up @@ -482,7 +482,7 @@ Shortcut for the C<Location> header.
my $names = $headers->names;
Return a list of all currently defined headers.
Return an array reference with all currently defined headers.
# Names of all headers
say for @{$headers->names};
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojo/Parameters.pm
Expand Up @@ -283,7 +283,7 @@ Merge parameters. Note that this method will normalize the parameters.
my $names = $params->names;
Return a list of all parameter names.
Return an array reference with all parameter names.
# Names of all parameters
say for @{$params->names};
Expand Down
4 changes: 2 additions & 2 deletions lib/Mojo/Transaction/HTTP.pm
Expand Up @@ -305,8 +305,8 @@ Check if connection can be kept alive.
my $redirects = $tx->redirects;
Return a list of all previous transactions that preceded this follow-up
transaction.
Return an array reference with all previous transactions that preceded this
follow-up transaction.
# Paths of all previous requests
say $_->req->url->path for @{$tx->redirects};
Expand Down
4 changes: 2 additions & 2 deletions lib/Mojolicious/Validator/Validation.pm
Expand Up @@ -194,7 +194,7 @@ array reference.
my $names = $validation->failed;
Return a list of all names for values that failed validation.
Return an array reference with all names for values that failed validation.
# Names of all values that failed
say for @{$validation->failed};
Expand Down Expand Up @@ -241,7 +241,7 @@ you want to access more than just the last one, you can use L</"every_param">.
my $names = $validation->passed;
Return a list of all names for values that passed validation.
Return an array reference with all names for values that passed validation.
# Names of all values that passed
say for @{$validation->passed};
Expand Down

0 comments on commit 0cab62d

Please sign in to comment.