From: Todd Hepler Date: Wed, 24 Sep 2008 21:01:41 +0000 (+0000) Subject: synopsis tweak X-Git-Tag: 0.59~43 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=fe015af9d8081d965000d42e77d7c395531fd985;p=gitmo%2FMoose.git synopsis tweak (I'm pretty sure you need a ->meta there) --- diff --git a/lib/Moose/Cookbook/Meta/Recipe5.pod b/lib/Moose/Cookbook/Meta/Recipe5.pod index b0d54b7..9137ed0 100644 --- a/lib/Moose/Cookbook/Meta/Recipe5.pod +++ b/lib/Moose/Cookbook/Meta/Recipe5.pod @@ -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