Skip to content

Commit

Permalink
fix a few typos
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Jul 21, 2016
1 parent 409ad44 commit dcedecf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Changes
@@ -1,5 +1,5 @@

7.01 2016-07-20
7.01 2016-07-22

7.0 2016-07-19
- Code name "Doughnut", this is a major release.
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojo/Content.pm
Expand Up @@ -484,7 +484,7 @@ content.
my $bool = $content->is_chunked;
Check if C<Transfer-Encoding> header indicates chunked tranfer encoding.
Check if C<Transfer-Encoding> header indicates chunked transfer encoding.
=head2 is_compressed
Expand Down
4 changes: 2 additions & 2 deletions lib/Mojolicious/Guides/Cookbook.pod
Expand Up @@ -218,7 +218,7 @@ automatically detect that it is executed as a C<CGI> script. Its use in
production environments is discouraged though, because as a result of how
C<CGI> works, it is very slow and many web servers are making it exceptionally
hard to configure properly. Additionally, many real-time web features, such as
WebSockets, are not avilable.
WebSockets, are not available.

ScriptAlias / /home/sri/my_app/script/my_app/

Expand Down Expand Up @@ -762,7 +762,7 @@ can be combined to solve some of hardest problems in web development.
hook after_build_tx => sub {
my $tx = shift;

# Subscribe to "upgrade" event to indentify multipart uploads
# Subscribe to "upgrade" event to identify multipart uploads
weaken $tx;
$tx->req->content->on(upgrade => sub {
my ($single, $multi) = @_;
Expand Down

0 comments on commit dcedecf

Please sign in to comment.