Fixed typo
Sebastian Riedel [Sat, 23 Apr 2005 00:20:53 +0000 (00:20 +0000)]
lib/Catalyst.pm
lib/Catalyst/Manual/Cookbook.pod

index 69dc28a..80394cb 100644 (file)
@@ -251,7 +251,7 @@ sub import {
     my $subdir = dir($home)->subdir($append);
     for ( split '/', $name ) { $home = dir($home)->parent }
     if ( $home =~ /blib$/ ) { $home = dir($home)->parent }
-    elsif ( !-f file( $home, 'Build.PL' ) ) { $home = $subdir }
+    elsif ( !-f file( $home, 'Makefile.PL' ) ) { $home = $subdir }
 
     if ( $caller->debug ) {
         $home
@@ -352,7 +352,7 @@ Sebastian Riedel, C<sri@oook.de>
 
 Andy Grundman, Andrew Ford, Andrew Ruthven, Autrijus Tang, Christian Hansen,
 Christopher Hicks, Dan Sully, Danijel Milicevic, David Naughton,
-Gary Ashton Jones, Jesse Sheidlower, Johan Lindstrom, Leon Brocard,
+Gary Ashton Jones, Jesse Sheidlower, Jody Belka, Johan Lindstrom, Leon Brocard,
 Marcus Ramberg, Tatsuhiko Miyagawa and all the others who've helped.
 
 =head1 LICENSE
index 3295168..d076b8d 100644 (file)
@@ -21,7 +21,7 @@ placing a C<die()> call in the C<end> action.
 If you're tired of removing and adding this all the time, you
 can easily add a condition. For example:
 
-  die "Testing" if $c->param->{dump_info};
+  die "Testing" if $c->params->{dump_info};
 
 =head2 Disable statistics