Skip to content

Commit

Permalink
more consistent examples
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Sep 27, 2014
1 parent 3878d57 commit 9f76dc7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/Mojo/UserAgent.pm
Expand Up @@ -505,7 +505,7 @@ environment variable or C<10>.
my $cookie_jar = $ua->cookie_jar;
$ua = $ua->cookie_jar(Mojo::UserAgent::CookieJar->new);
Cookie jar to use for this user agents requests, defaults to a
Cookie jar to use for requests performed by this user agent, defaults to a
L<Mojo::UserAgent::CookieJar> object.
# Disable extraction of cookies from responses
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojo/UserAgent/CookieJar.pm
Expand Up @@ -153,7 +153,7 @@ L<Mojo::UserAgent::CookieJar> implements the following attributes.
=head2 extracting
my $bool = $jar->extracting;
$jar = $jar->extracting(0);
$jar = $jar->extracting($bool);
Allow L</"extract"> to L</"add"> new cookies to the jar, defaults to a true
value.
Expand Down
4 changes: 2 additions & 2 deletions lib/Mojolicious/Command.pm
Expand Up @@ -14,8 +14,8 @@ use Pod::Usage 'pod2usage';

has app => sub { Mojo::Server->new->build_app('Mojo::HelloWorld') };
has description => 'No description.';
has quiet => 0;
has usage => "Usage: APPLICATION\n";
has 'quiet';
has usage => "Usage: APPLICATION\n";

sub chmod_file {
my ($self, $path, $mod) = @_;
Expand Down

0 comments on commit 9f76dc7

Please sign in to comment.