Reformatted documentation
[catagits/Catalyst-Runtime.git] / lib / Catalyst / ActionContainer.pm
index 337fdf6..4dd4500 100644 (file)
@@ -24,13 +24,19 @@ See L<Catalyst>.
 
 =head1 METHODS
 
-=over 4
+=head2 get_action
 
-=item part
+=cut
+
+sub get_action {
+    my ( $self, $name ) = @_;
+    return $self->actions->{$name} if defined $self->actions->{$name};
+    return;
+}
 
-=item actions
+=head2 actions
 
-=back
+=head2 part
 
 =head1 AUTHOR