more doc editing for Native Traits
Dave Rolsky [Sun, 16 Aug 2009 03:06:49 +0000 (22:06 -0500)]
lib/Moose/Meta/Attribute/Native/Trait/Bool.pm
lib/Moose/Meta/Attribute/Native/Trait/Counter.pm
lib/Moose/Meta/Attribute/Native/Trait/Number.pm
lib/Moose/Meta/Attribute/Native/Trait/String.pm

index ee53971..d5e4dd0 100644 (file)
@@ -79,7 +79,7 @@ Set the value to C<0>.
 
 =item I<toggle>
 
-Toggle the value. If it's true, set to false, and vice versa.
+Toggles the value. If it's true, set to false, and vice versa.
 
 =item I<not>
 
index b82d351..a1a9751 100644 (file)
@@ -92,7 +92,7 @@ the attribute.
 
 =over 4
 
-=item I<set>
+=item I<set($value)>
 
 Set the counter to the specified value.
 
index 58c9d20..8ae4a34 100644 (file)
@@ -98,31 +98,31 @@ package.
 
 =over 4
 
-=item I<set ($value)>
+=item B<set($value)>
 
 Alternate way to set the value.
 
-=item I<add ($value)>
+=item B<add($value)>
 
 Adds the current value of the attribute to C<$value>.
 
-=item I<sub ($value)>
+=item B<sub($value)>
 
 Subtracts the current value of the attribute to C<$value>.
 
-=item I<mul ($value)>
+=item B<mul($value)>
 
 Multiplies the current value of the attribute to C<$value>.
 
-=item I<div ($value)>
+=item B<div($value)>
 
 Divides the current value of the attribute to C<$value>.
 
-=item I<mod ($value)>
+=item B<mod($value)>
 
 Modulus the current value of the attribute to C<$value>.
 
-=item I<abs>
+=item B<abs>
 
 Sets the current value of the attribute to its absolute value.
 
index 111dc53..1566644 100644 (file)
@@ -89,40 +89,40 @@ the attribute.
 
 =over 4
 
-=item I<inc>
+=item B<inc>
 
 Increments the value stored in this slot using the magical string autoincrement
 operator. Note that Perl doesn't provide analogous behavior in C<-->, so
 C<dec> is not available.
 
-=item I<append> C<$string>
+=item B<append($string)>
 
 Append a string, like C<.=>.
 
-=item I<prepend> C<$string>
+=item B<prepend($string)>
 
 Prepend a string.
 
-=item I<replace> C<$pattern> C<$replacement>
+=item B<replace($pattern, $replacement)>
 
 Performs a regexp substitution (L<perlop/s>). There is no way to provide the
 C<g> flag, but code references will be accepted for the replacement, causing
 the regex to be modified with a single C<e>. C</smxi> can be applied using the
 C<qr> operator.
 
-=item I<match> C<$pattern>
+=item B<match($pattern)>
 
-Like I<replace> but without the replacement. Provided mostly for completeness.
+Like C<replace> but without the replacement. Provided mostly for completeness.
 
-=item C<chop>
+=item B<chop>
 
 L<perlfunc/chop>
 
-=item C<chomp>
+=item B<chomp>
 
 L<perlfunc/chomp>
 
-=item C<clear>
+=item B<clear>
 
 Sets the string to the empty string (not the value passed to C<default>).