doc fix
Stevan Little [Fri, 4 Apr 2008 20:29:29 +0000 (20:29 +0000)]
lib/Moose/Cookbook.pod
lib/Moose/Cookbook/Recipe3.pod

index 70f4294..c23632a 100644 (file)
@@ -54,10 +54,12 @@ the usual method overriding style "inside-out".
 
 I<abstract goes here>
 
-=item L<Moose::Cookbook::Recipe8> - ??
+=item L<Moose::Cookbook::Recipe8> - Managing complex relations with trigger (TODO)
 
 I<abstract goes here>
 
+Work off of this http://code2.0beta.co.uk/moose/svn/Moose/trunk/t/200_examples/007_Child_Parent_attr_inherit.t
+
 =item L<Moose::Cookbook::Recipe9> - ?? 
 
 I<abstract goes here>
index fb34ad9..9d49f0c 100644 (file)
@@ -84,7 +84,7 @@ is automatically created for us by Moose.
 
 The next attribute option is new, though: the C<predicate> option. 
 This option creates a method which can be used to check whether 
-a given slot (in this case C<parent>) contains a defined value. In 
+a given slot (in this case C<parent>) has been initialized. In 
 this case it will create a method called C<has_parent>. Quite simple, 
 and quite handy too.