Skip to content

Commit

Permalink
Miscellaneous typo and punctuation improvements.
Browse files Browse the repository at this point in the history
  • Loading branch information
pmichaud committed Jun 26, 2012
1 parent 3abb273 commit 15b5ca0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/Bool.pod
Expand Up @@ -18,6 +18,6 @@ Coerces its argument to C<Bool>.
multi sub prefix:<so>(Mu) returns Bool:D
Coerces its argument to C<Bool>. Has looser precedence than C<< prefix:<?> >>.
Coerces its argument to C<Bool>, has looser precedence than C<< prefix:<?> >>.
=end pod
2 changes: 1 addition & 1 deletion lib/List.pod
Expand Up @@ -31,7 +31,7 @@ an item (scalar) container.
my @a = 1, 2, 3;
my @flat = @a, @a; # six elements
my @nested = @a.item, @a.item; # two elemnts
my @nested = @a.item, @a.item; # two elements
C<.item> can often be written as C<$( ... )>, and on an array variable
even as C<$@a>.
Expand Down
6 changes: 3 additions & 3 deletions lib/Numeric.pod
Expand Up @@ -74,18 +74,18 @@ real numbers.
multi method Bool(Numeric:D:)
Returns C<False> if the number is equivalent to zero, and C<True> otherwise
Returns C<False> if the number is equivalent to zero, and C<True> otherwise.
=head3 succ
method succ(Numerid:D:)
Returns the number incremented by one (successor)
Returns the number incremented by one (successor).
=head3 pred
method pred(Numerid:D:)
Returns the number decremented by one (predecessor)
Returns the number decremented by one (predecessor).
=end pod

0 comments on commit 15b5ca0

Please sign in to comment.