Skip to content

Commit

Permalink
fixed a few typos
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Aug 2, 2013
1 parent 86a9b82 commit 94fe6c6
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions Changes
@@ -1,4 +1,6 @@

4.24 2013-08-03

4.23 2013-08-01
- Added redirects method to Mojo::Transaction::HTTP.

Expand Down
2 changes: 1 addition & 1 deletion lib/Mojo/Message/Response.pm
Expand Up @@ -151,7 +151,7 @@ Mojo::Message::Response - HTTP response
use Mojo::Message::Response;
# Parse
my $res = Mojo::Message::Reponse->new;
my $res = Mojo::Message::Response->new;
$res->parse("HTTP/1.0 200 OK\x0a\x0d");
$res->parse("Content-Length: 12\x0a\x0d\x0a\x0d");
$res->parse("Content-Type: text/plain\x0a\x0d\x0a\x0d");
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojolicious.pm
Expand Up @@ -41,7 +41,7 @@ has static => sub { Mojolicious::Static->new };
has types => sub { Mojolicious::Types->new };

our $CODENAME = 'Top Hat';
our $VERSION = '4.23';
our $VERSION = '4.24';

sub AUTOLOAD {
my $self = shift;
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojolicious/Lite.pm
Expand Up @@ -216,7 +216,7 @@ full access to all HTTP features and information.
use Mojolicious::Lite;
# Access request and reponse information
# Access request and response information
get '/agent' => sub {
my $self = shift;
my $host = $self->req->url->to_abs->host;
Expand Down

0 comments on commit 94fe6c6

Please sign in to comment.