From: Dave Rolsky Date: Thu, 12 Feb 2009 16:51:31 +0000 (+0000) Subject: Avoid breaking inside code X-Git-Tag: 0.69~12 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f08fd9926f0631102f9b233872a8a088cd973189;p=gitmo%2FMoose.git Avoid breaking inside code --- diff --git a/lib/Moose/Cookbook/Extending/Recipe2.pod b/lib/Moose/Cookbook/Extending/Recipe2.pod index 85bc5d9..92db754 100644 --- a/lib/Moose/Cookbook/Extending/Recipe2.pod +++ b/lib/Moose/Cookbook/Extending/Recipe2.pod @@ -73,8 +73,8 @@ I we go and add traits to it. The C<< Moose->init_meta >> method does ensures that the caller has a sane metaclass, and we don't want to replicate that logic in our extension. If the C<< Moose->init_meta >> was already called (because -the caller did C before using our extension), then calling -C<< Moose->init_meta >> again is effectively a no-op. +the caller did C> before using our extension), then +calling C<< Moose->init_meta >> again is effectively a no-op. =head1 AUTHOR