typo fix
[gitmo/Moo.git] / lib / Moo.pm
index cd65690..f172159 100644 (file)
@@ -5,7 +5,7 @@ use Moo::_Utils;
 use B 'perlstring';
 use Sub::Defer ();
 
-our $VERSION = '0.091003'; # 0.91.3
+our $VERSION = '0.091004'; # 0.91.4
 $VERSION = eval $VERSION;
 
 require Moo::sification;
@@ -353,7 +353,7 @@ B<required>, may be C<ro>, C<rw>, C<lazy> or C<rwp>.
 C<ro> generates an accessor that dies if you attempt to write to it - i.e.
 a getter only - by defaulting C<reader> to the name of the attribute.
 
-C<rw> generates a normal getter/setter by defauting C<accessor> to the
+C<rw> generates a normal getter/setter by defaulting C<accessor> to the
 name of the attribute.
 
 C<lazy> generates a reader like C<ro>, but also sets C<lazy> to 1 and