Add missing underscore
Dave Rolsky [Sat, 31 Jul 2010 17:15:57 +0000 (12:15 -0500)]
lib/Moose/Cookbook/Meta/Recipe6.pod

index 9c1a44a..91eaac3 100644 (file)
@@ -91,7 +91,7 @@ C<_add_policy_wrapper> method.
 You'll note that we have to explicitly set the C<policy> attribute in
 our constructor:
 
-      $self->{policy} = $options{policy};
+      $self->{_policy} = $options{policy};
 
 That is necessary because Moose metaclasses do not use the meta API to
 create objects. Most Moose classes have a custom "inlined" constructor