Clarified that method code for predicate and clearer is created by Moose automatically
Dan Dascalescu [Sat, 11 Jul 2009 00:06:30 +0000 (17:06 -0700)]
lib/Moose/Manual/Attributes.pod

index 174c624..2bbe3f6 100644 (file)
@@ -143,8 +143,9 @@ predicate, and clearer method.
   my $person2 = Person->new( ssn => '111-22-3333');
   $person2->has_ssn; # true
 
-By default, Moose does not make a predicate or clearer for you. You
-must explicitly provide names for them.
+By default, Moose does not make a predicate or clearer for you. You must
+explicitly provide names for them, and then Moose will create the methods
+for you.
 
 =head2 Required or not?