From: Dave Rolsky Date: Mon, 7 Sep 2009 16:02:15 +0000 (-0500) Subject: Small doc tweaks X-Git-Tag: 0.89_02~33^2~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=edd824294aa812f132270b7e85b07fc539ab37c2;p=gitmo%2FMoose.git Small doc tweaks --- diff --git a/lib/Moose/Cookbook/Extending/Recipe2.pod b/lib/Moose/Cookbook/Extending/Recipe2.pod index a5ae83c..ce05b9f 100644 --- a/lib/Moose/Cookbook/Extending/Recipe2.pod +++ b/lib/Moose/Cookbook/Extending/Recipe2.pod @@ -45,13 +45,13 @@ There are a few pieces of code worth looking at more closely. base_class_roles => ['MooseX::Debugging::Role::Object'], ); -This creates an C method in the C -package. Since we are not actually exporting anything, we do not pass -C any parameters related to exports, but we need -to have an C method to ensure that our C method is -called. This call also automatically generates the appropriate -C, which will pass the C option through -to L. +This creates an C method in the C package. Since we +are not actually exporting anything, we do not pass C +any parameters related to exports, but we need to have an C method to +ensure that our C method is called. The C is created by +C for us, since we passed the C +parameter. The generated C will in turn call +L. =head1 AUTHOR