From: Dave Rolsky <autarch@houseabsolute.urth.org>
Date: Tue, 17 Mar 2009 17:29:18 +0000 (-0500)
Subject: Missing docs on method metaclass names
X-Git-Tag: 0.78_01~3
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=4942f8af7e3b39f840eb9e446985114d03b6766e;p=gitmo%2FClass-MOP.git

Missing docs on method metaclass names
---

diff --git a/lib/Class/MOP/Class.pm b/lib/Class/MOP/Class.pm
index 9ae9bdb..9c81482 100644
--- a/lib/Class/MOP/Class.pm
+++ b/lib/Class/MOP/Class.pm
@@ -1275,7 +1275,7 @@ instance's attributes.
 
 Returns the class name of the instance metaclass, see
 L<Class::MOP::Instance> for more information on the instance
-metaclasses.
+metaclass.
 
 =item B<< $metaclass->get_meta_instance >>
 
@@ -1440,6 +1440,17 @@ track the original source of any methods added from other classes
 Remove the named method from the class. This method returns the
 L<Class::MOP::Method> object for the method.
 
+=item B<< $metaclass->method_metaclass >>
+
+Returns the class name of the method metaclass, see
+L<Class::MOP::Method> for more information on the method metaclass.
+
+=item B<< $metaclass->wrapped_method_metaclass >>
+
+Returns the class name of the wrapped method metaclass, see
+L<Class::MOP::Method::Wrapped> for more information on the wrapped
+method metaclass.
+
 =back
 
 =head2 Attribute introspection and creation