From: Brad Bowman Date: Wed, 28 Sep 2011 01:23:49 +0000 (+1000) Subject: Capitalization fix MyApp::base to MyApp::Base X-Git-Tag: 2.0301~19 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMoose.git;a=commitdiff_plain;h=1abd7f66ba40d740183fb4c74aaad79f43f667f3 Capitalization fix MyApp::base to MyApp::Base In Extending::Recipe3 DESCRIPTION --- diff --git a/lib/Moose/Cookbook/Extending/Recipe3.pod b/lib/Moose/Cookbook/Extending/Recipe3.pod index 2c9885b..ea75547 100644 --- a/lib/Moose/Cookbook/Extending/Recipe3.pod +++ b/lib/Moose/Cookbook/Extending/Recipe3.pod @@ -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 and add C and add C> 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 for you.