Doc fix for CMOP::Method from sorear
Shawn M Moore [Mon, 8 Dec 2008 01:08:40 +0000 (01:08 +0000)]
Changes
lib/Class/MOP/Method.pm

diff --git a/Changes b/Changes
index d94f0ae..4ca6807 100644 (file)
--- a/Changes
+++ b/Changes
@@ -16,6 +16,8 @@ Revision history for Perl extension Class-MOP.
     * MOP.xs
       - Various improvements and refactoring, making things more robust and
         easier to maintain. (Florian Ragwitz)
+    * Class::MOP::Method
+      - Indicate that package_name and name are required (Stefan O'Rear)
 
 0.71_01 Wed, December 3, 2008
     * Class::MOP::Method
index bd5bfff..4fc88a4 100644 (file)
@@ -168,10 +168,8 @@ to this class.
 =item B<wrap ($code, %params)>
 
 This is the basic constructor, it returns a B<Class::MOP::Method>
-instance which wraps the given C<$code> reference. You can also
+instance which wraps the given C<$code> reference. You must also
 set the C<package_name> and C<name> attributes using the C<%params>.
-If these are not set, then thier accessors will attempt to figure
-it out using the C<Class::MOP::get_code_info> function.
 
 =item B<clone (%params)>