Doc consistency: use B<> not I<>
Shawn M Moore [Sun, 23 Aug 2009 23:03:06 +0000 (19:03 -0400)]
lib/Moose/Meta/Attribute/Native/Trait/Bool.pm
lib/Moose/Meta/Attribute/Native/Trait/Counter.pm

index 07ea10a..4d2796f 100644 (file)
@@ -69,19 +69,19 @@ the attribute.
 
 =over 4
 
-=item I<set>
+=item B<set>
 
 Sets the value to C<1>.
 
-=item I<unset>
+=item B<unset>
 
 Set the value to C<0>.
 
-=item I<toggle>
+=item B<toggle>
 
 Toggles the value. If it's true, set to false, and vice versa.
 
-=item I<not>
+=item B<not>
 
 Equivalent of 'not C<$value>'.
 
index 54a0adf..03e7767 100644 (file)
@@ -92,21 +92,21 @@ the attribute.
 
 =over 4
 
-=item I<set($value)>
+=item B<set($value)>
 
 Set the counter to the specified value.
 
-=item I<inc>
+=item B<inc>
 
 Increments the value stored in this slot by 1. Providing an argument will
 cause the counter to be increased by specified amount.
 
-=item I<dec>
+=item B<dec>
 
 Decrements the value stored in this slot by 1. Providing an argument will
 cause the counter to be increased by specified amount.
 
-=item I<reset>
+=item B<reset>
 
 Resets the value stored in this slot to it's default value.