Skip to content

Commit

Permalink
fixed typos
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Nov 28, 2011
1 parent 53c9456 commit fb59801
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions Changes
@@ -1,5 +1,8 @@
This file documents the revision history for Perl extension Mojolicious.

2.34 2011-11-28 00:00:00
- Improved documentation.

2.33 2011-11-28 00:00:00
- Improved Mojo::EventEmitter performance slightly.
- Improved documentation.
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojo/HelloWorld.pm
Expand Up @@ -14,7 +14,7 @@ any '/websocket' => sub {
};

# "Does whisky count as beer?"
under->any('/*whatever' => {whatever => '', text => 'Your Mojo is working!'});
any '/*whatever' => {whatever => '', text => 'Your Mojo is working!'};

1;
__DATA__
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojo/IOWatcher.pm
Expand Up @@ -150,7 +150,7 @@ Mojo::IOWatcher - Non-blocking I/O watcher
$watcher->timer(15 => sub {
my $watcher = shift;
$watcher->drop_handle($handle);
say "Timeout!";
say 'Timeout!';
});
# Start and stop watcher
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojolicious.pm
Expand Up @@ -32,7 +32,7 @@ has static => sub { Mojolicious::Static->new };
has types => sub { Mojolicious::Types->new };

our $CODENAME = 'Leaf Fluttering In Wind';
our $VERSION = '2.33';
our $VERSION = '2.34';

# "These old doomsday devices are dangerously unstable.
# I'll rest easier not knowing where they are."
Expand Down

0 comments on commit fb59801

Please sign in to comment.