synopsis tweak
Todd Hepler [Wed, 24 Sep 2008 21:01:41 +0000 (21:01 +0000)]
(I'm pretty sure you need a ->meta there)

lib/Moose/Cookbook/Meta/Recipe5.pod

index b0d54b7..9137ed0 100644 (file)
@@ -21,7 +21,7 @@ Moose::Cookbook::Meta::Recipe5 - The "table" attribute as a metaclass trait
   package MyApp::User;
   use Moose -traits => 'HasTable';
 
-  __PACKAGE__->table('User');
+  __PACKAGE__->meta->table('User');
 
 =head1 DESCRIPTION