docs: is => 'ro' gives a get-only accessor, not a set-only one :)
Andrew Rodland [Wed, 17 Nov 2010 09:05:12 +0000 (03:05 -0600)]
lib/Moo.pm

index 6a59967..3f1d810 100644 (file)
@@ -230,7 +230,7 @@ The options for C<has> are as follows:
 =item * is
 
 B<required>, must be C<ro> or C<rw>.  Unsurprisingly, C<ro> generates an
-accessor that will not respond to arguments; to be clear: a setter only. C<rw>
+accessor that will not respond to arguments; to be clear: a getter only. C<rw>
 will create a perlish getter/setter.
 
 =item * isa