typo fixes
[gitmo/Moose-Autobox.git] / lib / Moose / Autobox.pm
index 947365a..6bbff3a 100644 (file)
@@ -8,9 +8,9 @@ use Carp        qw(confess);
 use Scalar::Util ();
 use Moose::Util  ();
 
-our $VERSION = '0.11';
+our $VERSION = '0.13';
 
-use base 'autobox';
+use parent 'autobox';
 
 use Moose::Autobox::Undef;
 
@@ -112,9 +112,12 @@ the 'hooks' for others to add implementation too.
 Several people are using this module in serious applications and 
 it seems to be quite stable. The underlying technologies of L<autobox>
 and L<Moose::Role> are also considered stable. There is some performance
-hit, but as I am fond of saying, nothing in life is free. If you have 
-any questions regarding this module, either email me, or stop by #moose
-on irc.perl.org and ask around.
+hit, but as I am fond of saying, nothing in life is free.  Note that this hit
+only applies to the I<use> of methods on native Perl values, not the mere act
+of loading this module in your namespace.
+
+If you have any questions regarding this module, either email me, or stop by
+#moose on irc.perl.org and ask around.
 
 =head2 Adding additional methods
 
@@ -137,7 +140,7 @@ as you would with vanilla autobox.
 
 =item B<mixin_additional_role ($type, $role)>
 
-This will mixin an additonal C<$role> into a certain C<$type>. The 
+This will mixin an additional C<$role> into a certain C<$type>. The 
 types can be SCALAR, ARRAY, HASH or CODE.
 
 This can be used to add additional methods to the types, see the