From: Dave Rolsky Date: Sat, 11 Feb 2012 18:02:16 +0000 (-0600) Subject: Rename Basics::Recipe8 to Basics::BinaryTree_BuilderAndLazyBuild X-Git-Tag: 2.0500~72 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMoose.git;a=commitdiff_plain;h=53a1e0939093bc4b404a2a5b1675a372bd4e3384 Rename Basics::Recipe8 to Basics::BinaryTree_BuilderAndLazyBuild --- diff --git a/lib/Moose.pm b/lib/Moose.pm index 475d69c..46207fa 100644 --- a/lib/Moose.pm +++ b/lib/Moose.pm @@ -642,10 +642,11 @@ example. =item I => 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 -and/or L 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 and/or +L for more +information. =item I => SCALAR | CODE diff --git a/lib/Moose/Cookbook.pod b/lib/Moose/Cookbook.pod index 521bece..3c1d698 100644 --- a/lib/Moose/Cookbook.pod +++ b/lib/Moose/Cookbook.pod @@ -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 - Builder methods and lazy_build +=item L - Builder methods and lazy_build The builder feature provides an inheritable and role-composable way to provide a default attribute value. diff --git a/lib/Moose/Cookbook/Basics/BinaryTree_AttributeFeatures.pod b/lib/Moose/Cookbook/Basics/BinaryTree_AttributeFeatures.pod index e13965b..d7c310f 100644 --- a/lib/Moose/Cookbook/Basics/BinaryTree_AttributeFeatures.pod +++ b/lib/Moose/Cookbook/Basics/BinaryTree_AttributeFeatures.pod @@ -212,7 +212,7 @@ You I use the C option without the C option if you like, as we showed in the second recipe. Also, you can use C instead of C. See -L for details. +L for details. =back diff --git a/lib/Moose/Cookbook/Basics/Recipe8.pod b/lib/Moose/Cookbook/Basics/BinaryTree_BuilderAndLazyBuild.pod similarity index 97% rename from lib/Moose/Cookbook/Basics/Recipe8.pod rename to lib/Moose/Cookbook/Basics/BinaryTree_BuilderAndLazyBuild.pod index 043ba37..4ecc04d 100644 --- a/lib/Moose/Cookbook/Basics/Recipe8.pod +++ b/lib/Moose/Cookbook/Basics/BinaryTree_BuilderAndLazyBuild.pod @@ -1,4 +1,4 @@ -package Moose::Cookbook::Basics::Recipe8; +package Moose::Cookbook::Basics::BinaryTree_BuilderAndLazyBuild; # ABSTRACT: Builder methods and lazy_build