Missed a few required options for the constructor
Dave Rolsky [Tue, 17 Mar 2009 15:17:03 +0000 (10:17 -0500)]
lib/Class/MOP/Method/Accessor.pm

index bd88bf3..a5cc605 100644 (file)
@@ -243,22 +243,30 @@ C<%options> provided.
 
 =over 4
 
-=item attribute
+=item * attribute
 
 This is the C<Class::MOP::Attribute> for which accessors are being
 generated. This option is required.
 
-=item accessor_type
+=item * accessor_type
 
 This is a string which should be one of "reader", "writer",
 "accessor", "predicate", or "clearer". This is the type of method
 being generated. This option is required.
 
-=item is_inline
+=item * is_inline
 
 This indicates whether or not the accessor should be inlined. This
 default to false.
 
+=item * name
+
+The method name (without a package name). This is required.
+
+=item * package_name
+
+The package name for the method. This is required.
+
 =back
 
 =item B<< $metamethod->accessor_type >>