Rename Basics::Recipe11 to Basics::DateTime_ExtendingNonMooseParent
Dave Rolsky [Sat, 11 Feb 2012 18:08:11 +0000 (12:08 -0600)]
lib/Moose/Cookbook.pod
lib/Moose/Cookbook/Basics/DateTime_ExtendingNonMooseParent.pod [moved from lib/Moose/Cookbook/Basics/Recipe11.pod with 93% similarity]
lib/Moose/Manual/FAQ.pod

index 820fff8..4f5db38 100644 (file)
@@ -71,7 +71,7 @@ model how eye color is determined during reproduction.
 This recipe demonstrates the use of C<BUILDARGS> and C<BUILD> to hook
 into object construction.
 
-=item L<Moose::Cookbook::Basics::Recipe11> - Extending a non-Moose base class
+=item L<Moose::Cookbook::Basics::DateTime_ExtendingNonMooseParent>
 
 In this recipe, we make a Moose-based subclass of L<DateTime>, a
 module which does not use Moose itself.
@@ -1,6 +1,6 @@
-package Moose::Cookbook::Basics::Recipe11;
+package Moose::Cookbook::Basics::DateTime_ExtendingNonMooseParent;
 
-# ABSTRACT: Extending a non-Moose base class
+# ABSTRACT: Extending a non-Moose parent class
 
 __END__
 
index 422b5c8..8fb8570 100644 (file)
@@ -91,7 +91,7 @@ coercions, and C<lazy_build>, so subclassing is often not the ideal
 route.
 
 That said, if you really need to inherit from a non-Moose class, see
-L<Moose::Cookbook::Basics::Recipe11> for an example of how to do it,
+L<Moose::Cookbook::Basics::DateTime_ExtendingNonMooseParent> for an example of how to do it,
 or take a look at L<Moose::Manual::MooseX/"MooseX::NonMoose">.
 
 =head2 Accessors