Doc using the new method->execute API
Shawn M Moore [Sat, 29 Nov 2008 01:37:57 +0000 (01:37 +0000)]
lib/Class/MOP/Method/Accessor.pm
lib/Class/MOP/Method/Constructor.pm

index ef4e34e..f3fc93c 100644 (file)
@@ -201,7 +201,7 @@ Class::MOP::Method::Accessor - Method Meta Object for accessors
         accessor_type => 'reader',
     );
 
-    $reader->body->($instance); # call the reader method
+    $reader->body->execute($instance); # call the reader method
 
 =head1 DESCRIPTION
 
index 8388a1c..40ed1fc 100644 (file)
@@ -190,7 +190,7 @@ Class::MOP::Method::Constructor - Method Meta Object for constructors
   );
 
   # calling the constructor ...
-  $constructor->body->($metaclass->name, %params);
+  $constructor->body->execute($metaclass->name, %params);
 
 =head1 DESCRIPTION