Capitalization fix MyApp::base to MyApp::Base
Brad Bowman [Wed, 28 Sep 2011 01:23:49 +0000 (11:23 +1000)]
In Extending::Recipe3 DESCRIPTION

lib/Moose/Cookbook/Extending/Recipe3.pod

index 2c9885b..ea75547 100644 (file)
@@ -40,7 +40,7 @@ use Test::Requires {
 =head1 DESCRIPTION
 
 A common extension is to provide an alternate base class. One way to
-do that is to make a C<MyApp::base> and add C<S<extends
+do that is to make a C<MyApp::Base> and add C<S<extends
 'MyApp::Base'>> to every class in your application. That's pretty
 tedious. Instead, you can create a Moose-alike module that sets the
 base object class to C<MyApp::Base> for you.