Fix some bugs in the recipe code
Dave Rolsky [Wed, 18 Feb 2009 19:56:57 +0000 (19:56 +0000)]
lib/Moose/Cookbook/Extending/Recipe2.pod

index 482b291..d12e56f 100644 (file)
@@ -15,7 +15,6 @@ Moose::Cookbook::Extending::Recipe2 - Providing a role for the base object class
   use Moose ();
   use Moose::Exporter;
   use Moose::Util::MetaRole;
-  use MooseX::Debugging::Role::Object;
 
   Moose::Exporter->setup_import_methods;
 
@@ -33,6 +32,8 @@ Moose::Cookbook::Extending::Recipe2 - Providing a role for the base object class
 
   package MooseX::Debugging::Role::Object;
 
+  use Moose::Role;
+
   after 'BUILD' => sub {
       my $self = shift;