Rename Extending::Recipe2 to Extending::Debugging_BaseClassRole
Dave Rolsky [Sat, 11 Feb 2012 20:37:57 +0000 (14:37 -0600)]
lib/Moose/Cookbook.pod
lib/Moose/Cookbook/Extending/Debugging_BaseClassRole.pod [moved from lib/Moose/Cookbook/Extending/Recipe2.pod with 97% similarity]
lib/Moose/Cookbook/Meta/Table_MetaclassTrait.pod

index 6d400e9..74fd35f 100644 (file)
@@ -176,7 +176,7 @@ There are quite a few ways to extend Moose. This recipe provides an
 overview of each method, and provides recommendations for when each is
 appropriate.
 
-=item L<Moose::Cookbook::Extending::Recipe2> - Providing a base object class role
+=item L<Moose::Cookbook::Extending::Debugging_BaseClassRole>
 
 Many base object class extensions can be implemented as roles. This
 example shows how to provide a base object class debugging role that
@@ -1,4 +1,4 @@
-package Moose::Cookbook::Extending::Recipe2;
+package Moose::Cookbook::Extending::Debugging_BaseClassRole;
 
 # ABSTRACT: Providing a role for the base object class
 
index 1618947..30a8c3b 100644 (file)
@@ -39,8 +39,8 @@ the table might be an object describing the table.
 This really is as simple as the recipe L</SYNOPSIS> shows. The trick is
 getting your classes to use this metaclass, and providing some sort of sugar
 for declaring the table. This is covered in
-L<Moose::Cookbook::Extending::Recipe2>, which shows how to make a module like
-C<Moose.pm> itself, with sugar like C<has_table()>.
+L<Moose::Cookbook::Extending::Debugging_BaseClassRole>, which shows how to
+make a module like C<Moose.pm> itself, with sugar like C<has_table()>.
 
 =head2 Using this Metaclass Trait in Practice