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 Jun 3, 2013
1 parent d922b12 commit fc55b36
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/Mojo/Asset/File.pm
Expand Up @@ -184,7 +184,7 @@ Delete file automatically once it's not used anymore.
my $handle = $file->handle;
$file = $file->handle(IO::File->new);
File handle, created on demand.
Filehandle, created on demand.
=head2 path
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojo/Log.pm
Expand Up @@ -123,7 +123,7 @@ L<Mojo::Log> implements the following attributes.
my $handle = $log->handle;
$log = $log->handle(IO::Handle->new);
Log file handle used by default C<message> event, defaults to opening C<path>
Log filehandle used by default C<message> event, defaults to opening C<path>
or C<STDERR>.
=head2 level
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojo/Server/Hypnotoad.pm
Expand Up @@ -56,7 +56,7 @@ sub run {
exit 0 if $pid;
setsid or die "Can't start a new session: $!";

# Close file handles
# Close filehandles
open STDIN, '</dev/null';
open STDOUT, '>/dev/null';
open STDERR, '>&STDOUT';
Expand Down

0 comments on commit fc55b36

Please sign in to comment.