Document the method name I actually added, idiot
Tomas Doran [Sat, 18 Jul 2009 10:12:51 +0000 (10:12 +0000)]
lib/Catalyst/Action.pm
lib/Catalyst/Component.pm

index 8d187a0..fdb237c 100644 (file)
@@ -103,8 +103,8 @@ and so on. This determines how the action is dispatched to.
 
 =head2 class
 
-Returns the class name of the component where this action is defined.
-Derived by calling the L<Catalyst::Component/_component_class|_component_class>
+Returns the name of the component where this action is defined.
+Derived by calling the L<Catalyst::Component/_component_name|_component_name>
 method on each component.
 
 =head2 code
index d069278..c065664 100644 (file)
@@ -172,13 +172,14 @@ something like this:
       return $class->new($app, $args);
   }
 
-=head2 _component_class
+=head2 _component_name
 
-The class name of the component within an application. This is used to
-pass the component's class name to actions generated (becoming
+The name of the component within an application. This is used to
+pass the component's name to actions generated (becoming
 C<< $action->class >>). This is needed so that the L</COMPONENT> method can
 return an instance of a different class (e.g. a L<Class::MOP> anonymous class),
-and should be used to retrieve a component instead of C<< ref($self) >>.
+(as finding the component name by C<< ref($self) >> will not work correctly in
+such cases).
 
 =head2 $c->config