From: Andrew Rodland <andrew@cleverdomain.org>
Date: Wed, 17 Nov 2010 09:05:12 +0000 (-0600)
Subject: docs: is => 'ro' gives a get-only accessor, not a set-only one :)
X-Git-Tag: release_0.9.3~6
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=0654a8fa4c314bd609501283694ef1cd3b2a58be;p=gitmo%2FMoo.git

docs: is => 'ro' gives a get-only accessor, not a set-only one :)
---

diff --git a/lib/Moo.pm b/lib/Moo.pm
index 6a59967..3f1d810 100644
--- a/lib/Moo.pm
+++ b/lib/Moo.pm
@@ -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