Rename Basics::Recipe6 to Basics::Document_AugmentAndInner
Dave Rolsky [Sat, 11 Feb 2012 17:59:30 +0000 (11:59 -0600)]
lib/Moose.pm
lib/Moose/Cookbook.pod
lib/Moose/Cookbook/Basics/Document_AugmentAndInner.pod [moved from lib/Moose/Cookbook/Basics/Recipe6.pod with 95% similarity]

index 27d954b..475d69c 100644 (file)
@@ -787,14 +787,15 @@ superclass method with the same arguments as the original method.
 
 An C<augment> method, is a way of explicitly saying "I am augmenting this
 method from my superclass". Once again, the details of how C<inner> and
-C<augment> work is best described in the L<Moose::Cookbook::Basics::Recipe6>.
+C<augment> work is best described in the
+L<Moose::Cookbook::Basics::Document_AugmentAndInner>.
 
 =item B<inner>
 
 The keyword C<inner>, much like C<super>, is a no-op outside of the context of
 an C<augment> method. You can think of C<inner> as being the inverse of
 C<super>; the details of how C<inner> and C<augment> work is best described in
-the L<Moose::Cookbook::Basics::Recipe6>.
+the L<Moose::Cookbook::Basics::Document_AugmentAndInner>.
 
 =item B<blessed>
 
index a24e4e0..2b59923 100644 (file)
@@ -51,11 +51,6 @@ classes that could be used to model companies, people, employees, etc.
 
 This recipe covers more subtype creation, including the use of type coercions.
 
-=item L<Moose::Cookbook::Basics::Recipe6> - The augment/inner example
-
-Demonstrates the use of C<augment> method modifiers, a way of turning
-the usual method overriding style "inside-out".
-
 =item L<Moose::Cookbook::Basics::Recipe7> - Making Moose fast with immutable
 
 Making a class immutable greatly increases the speed of accessors and
@@ -81,6 +76,11 @@ into object construction.
 In this recipe, we make a Moose-based subclass of L<DateTime>, a
 module which does not use Moose itself.
 
+=item L<Moose::Cookbook::Basics::Document_AugmentAndInner>
+
+Demonstrates the use of C<augment> method modifiers, a way of turning
+the usual method overriding style "inside-out".
+
 =back
 
 =head2 Moose Roles
@@ -1,6 +1,6 @@
-package Moose::Cookbook::Basics::Recipe6;
+package Moose::Cookbook::Basics::Document_AugmentAndInner
 
-# ABSTRACT: The augment/inner example
+# ABSTRACT: The augment modifier, which turns normal method overriding "inside-out"
 
 __END__