Skip to content

Commit

Permalink
fixed typo in user agent example
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Feb 1, 2014
1 parent ed1d91e commit 3b5fc23
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions Changes
@@ -1,4 +1,6 @@

4.74 2014-02-02

4.73 2014-02-01
- Improved xml_escape performance significantly.
- Improved html_unescape and url_unescape performance.
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojo/UserAgent.pm
Expand Up @@ -680,7 +680,7 @@ L<Mojo::UserAgent::Transactor/"tx">.
$tx->req->cookies({name => 'foo', value => 'bar'});
$ua->start($tx);
# Interrupt transaction by raising an error
# Interrupt response by raising an error
my $tx = $ua->build_tx(GET => 'example.com');
$tx->res->on(progress => sub {
my $res = shift;
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojolicious.pm
Expand Up @@ -43,7 +43,7 @@ has types => sub { Mojolicious::Types->new };
has validator => sub { Mojolicious::Validator->new };

our $CODENAME = 'Top Hat';
our $VERSION = '4.73';
our $VERSION = '4.74';

sub AUTOLOAD {
my $self = shift;
Expand Down

0 comments on commit 3b5fc23

Please sign in to comment.