Rename Meta::Recipe6 to Meta::PrivateOrPublic_MethodMetaclass
Dave Rolsky [Sat, 11 Feb 2012 20:31:26 +0000 (14:31 -0600)]
lib/Moose/Cookbook.pod
lib/Moose/Cookbook/Meta/PrivateOrPublic_MethodMetaclass.pod [moved from lib/Moose/Cookbook/Meta/Recipe6.pod with 98% similarity]

index e110b5d..0f9ef4e 100644 (file)
@@ -132,7 +132,7 @@ composable attribute functionality.
 This recipe takes the class metaclass we saw in the previous recipe
 and reimplements it as a metaclass trait.
 
-=item L<Moose::Cookbook::Meta::Recipe6> - A method metaclass for marking methods public or private
+=item L<Moose::Cookbook::Meta::PrivateOrPublic_MethodMetaclass>
 
 This recipe shows a custom method metaclass that implements making a
 method private.
@@ -1,4 +1,4 @@
-package Moose::Cookbook::Meta::Recipe6;
+package Moose::Cookbook::Meta::PrivateOrPublic_MethodMetaclass;
 
 # ABSTRACT: A method metaclass for marking methods public or private