From: Dan Dascalescu Date: Sat, 11 Jul 2009 00:06:30 +0000 (-0700) Subject: Clarified that method code for predicate and clearer is created by Moose automatically X-Git-Tag: 0.88~24 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b169aa0ba583076b7acd633cbd13d7e2d6b63144;p=gitmo%2FMoose.git Clarified that method code for predicate and clearer is created by Moose automatically --- diff --git a/lib/Moose/Manual/Attributes.pod b/lib/Moose/Manual/Attributes.pod index 174c624..2bbe3f6 100644 --- a/lib/Moose/Manual/Attributes.pod +++ b/lib/Moose/Manual/Attributes.pod @@ -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?