From: Sebastian Riedel Date: Thu, 10 Nov 2005 00:38:58 +0000 (+0000) Subject: Fixed typo X-Git-Tag: 5.7099_04~982 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=9d3e016eb160b2d8a78cd34cec35bda020b9ed99 Fixed typo --- diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index 8d59a4d..c6f7404 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -415,7 +415,7 @@ sub setup { $class->setup_components; if ( $class->debug ) { - my $t = Text::SimpleTable->new( [ 37, 'Class' ], [ 36, 'Type' ] ); + my $t = Text::SimpleTable->new( [ 65, 'Class' ], [ 8, 'Type' ] ); for my $comp ( sort keys %{ $class->components } ) { my $type = ref $class->components->{$comp} ? 'instance' : 'class'; $t->row( $comp, $type );