ActionChains part attribute doesn't need a default.
[catagits/Catalyst-Runtime.git] / lib / Catalyst / ActionContainer.pm
index f3cb7e0..2f98be1 100644 (file)
@@ -17,7 +17,7 @@ to represent the various dispatch points in your application.
 
 use Moose;
 
-has part => (is => 'rw', required => 1, lazy => 1, default => sub { {} });
+has part => (is => 'rw', required => 1);
 has actions => (is => 'rw', required => 1, lazy => 1, default => sub { {} });
 
 around new => sub {
@@ -74,9 +74,9 @@ stringifies to.
 
 Provided by Moose
 
-=head1 AUTHOR
+=head1 AUTHORS
 
-Matt S. Trout
+Catalyst Contributors, see Catalyst.pm
 
 =head1 COPYRIGHT