Skip to content

Commit

Permalink
documentation tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Jul 28, 2012
1 parent 026eac7 commit f2a87b1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/Mojo/Base.pm
Expand Up @@ -10,7 +10,7 @@ use feature ();
use Carp ();

# Only Perl 5.14+ requires it on demand
use IO::Handle;
use IO::Handle ();

# "Kids, you tried your best and you failed miserably.
# The lesson is, never try."
Expand Down Expand Up @@ -147,13 +147,13 @@ All three forms save a lot of typing.
use strict;
use warnings;
use feature ':5.10';
use IO::Handle;
use IO::Handle ();
# use Mojo::Base -base;
use strict;
use warnings;
use feature ':5.10';
use IO::Handle;
use IO::Handle ();
use Mojo::Base;
push @ISA, 'Mojo::Base';
sub has { Mojo::Base::attr(__PACKAGE__, @_) }
Expand All @@ -162,7 +162,7 @@ All three forms save a lot of typing.
use strict;
use warnings;
use feature ':5.10';
use IO::Handle;
use IO::Handle ();
require SomeBaseClass;
push @ISA, 'SomeBaseClass';
use Mojo::Base;
Expand Down

0 comments on commit f2a87b1

Please sign in to comment.