From: Shawn M Moore Date: Sun, 23 Aug 2009 23:03:06 +0000 (-0400) Subject: Doc consistency: use B<> not I<> X-Git-Tag: 0.89_01~5^2~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=eb465b322032d6ac2f0febbc571e89f93e96af3f;p=gitmo%2FMoose.git Doc consistency: use B<> not I<> --- diff --git a/lib/Moose/Meta/Attribute/Native/Trait/Bool.pm b/lib/Moose/Meta/Attribute/Native/Trait/Bool.pm index 07ea10a..4d2796f 100644 --- a/lib/Moose/Meta/Attribute/Native/Trait/Bool.pm +++ b/lib/Moose/Meta/Attribute/Native/Trait/Bool.pm @@ -69,19 +69,19 @@ the attribute. =over 4 -=item I +=item B Sets the value to C<1>. -=item I +=item B Set the value to C<0>. -=item I +=item B Toggles the value. If it's true, set to false, and vice versa. -=item I +=item B Equivalent of 'not C<$value>'. diff --git a/lib/Moose/Meta/Attribute/Native/Trait/Counter.pm b/lib/Moose/Meta/Attribute/Native/Trait/Counter.pm index 54a0adf..03e7767 100644 --- a/lib/Moose/Meta/Attribute/Native/Trait/Counter.pm +++ b/lib/Moose/Meta/Attribute/Native/Trait/Counter.pm @@ -92,21 +92,21 @@ the attribute. =over 4 -=item I +=item B Set the counter to the specified value. -=item I +=item B Increments the value stored in this slot by 1. Providing an argument will cause the counter to be increased by specified amount. -=item I +=item B Decrements the value stored in this slot by 1. Providing an argument will cause the counter to be increased by specified amount. -=item I +=item B Resets the value stored in this slot to it's default value.