Rename Basics::Recipe8 to Basics::BinaryTree_BuilderAndLazyBuild
Dave Rolsky [Sat, 11 Feb 2012 18:02:16 +0000 (12:02 -0600)]
lib/Moose.pm
lib/Moose/Cookbook.pod
lib/Moose/Cookbook/Basics/BinaryTree_AttributeFeatures.pod
lib/Moose/Cookbook/Basics/BinaryTree_BuilderAndLazyBuild.pod [moved from lib/Moose/Cookbook/Basics/Recipe8.pod with 97% similarity]

index 475d69c..46207fa 100644 (file)
@@ -642,10 +642,11 @@ example.
 
 =item I<builder> => Str
 
-The value of this key is the name of the method that will be called to
-obtain the value used to initialize the attribute. See the L<builder
-option docs in Class::MOP::Attribute|Class::MOP::Attribute/builder>
-and/or L<Moose::Cookbook::Basics::Recipe8> for more information.
+The value of this key is the name of the method that will be called to obtain
+the value used to initialize the attribute. See the L<builder option docs in
+Class::MOP::Attribute|Class::MOP::Attribute/builder> and/or
+L<Moose::Cookbook::Basics::BinaryTree_BuilderAndLazyBuild> for more
+information.
 
 =item I<default> => SCALAR | CODE
 
index 521bece..3c1d698 100644 (file)
@@ -56,7 +56,7 @@ This recipe covers more subtype creation, including the use of type coercions.
 Making a class immutable greatly increases the speed of accessors and
 object construction.
 
-=item L<Moose::Cookbook::Basics::Recipe8> - Builder methods and lazy_build
+=item L<Moose::Cookbook::Basics::BinaryTree_BuilderAndLazyBuild> - Builder methods and lazy_build
 
 The builder feature provides an inheritable and role-composable way to
 provide a default attribute value.
index e13965b..d7c310f 100644 (file)
@@ -212,7 +212,7 @@ You I<can> use the C<default> option without the C<lazy> option if you
 like, as we showed in the second recipe.
 
 Also, you can use C<builder> instead of C<default>. See
-L<Moose::Cookbook::Basics::Recipe8> for details.
+L<Moose::Cookbook::Basics::BinaryTree_BuilderAndLazyBuild> for details.
 
 =back
 
@@ -1,4 +1,4 @@
-package Moose::Cookbook::Basics::Recipe8;
+package Moose::Cookbook::Basics::BinaryTree_BuilderAndLazyBuild;
 
 # ABSTRACT: Builder methods and lazy_build