Removed bogus Index doc
[catagits/Catalyst-Runtime.git] / lib / Catalyst.pm
index 77aa8e9..ccdc85e 100644 (file)
@@ -118,7 +118,6 @@ Catalyst - The Elegant MVC Web Application Framework
 
     # called for / and only /, no other args
     sub baz : Path  { ... } 
-    sub baz : Index { ... }
 
     # called for all actions, from the top-most controller inwards
     sub auto : Private { 
@@ -342,9 +341,8 @@ Contains the return value of the last executed action.
 
 =item $c->component($name)
 
-Gets a component object by name.
-
-    $c->comp('MyApp::Model::MyModel')->do_stuff;
+Gets a component object by name.  This method is no longer recommended.
+$c->controller, $c->model, and $c->view should be used instead.
 
 =cut