POD fix (thanks arcanehl)
Shawn M Moore [Fri, 12 Dec 2008 00:23:44 +0000 (00:23 +0000)]
lib/MooseX/Role/Parameterized/Tutorial.pm

index c20c40d..1163a49 100644 (file)
@@ -70,9 +70,9 @@ executed. It will receive a new parameter object and produce an entirely new
 role.
 
 Due to limitations inherent in Perl, you must declare methods with
-C<method name => sub { ... }> instead of the usual C<sub name { ... }>. Your
-methods may, of course, close over the parameter object. This means that your
-methods may use parameters however they wish!
+C<< method name => sub { ... } >> instead of the usual C<sub name { ... }>.
+Your methods may, of course, close over the parameter object. This means that
+your methods may use parameters however they wish!
 
 =head1 IMPLEMENTATION NOTES