Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
formatting tweak
  • Loading branch information
molecules committed Jul 22, 2016
1 parent 0b82fdd commit 30c2714
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/Type/Bool.pod6
Expand Up @@ -19,7 +19,7 @@ Returns C<True>.
say True.succ; # True
say False.succ; # True
succ is short for successor. In many languages, the succ function is used to return the "next" enum, also known as the successor. Bool is a special enum with only two values, C<False> and C<True>. When sorted, C<False> comes first, so C<True> is its successor. And since C<True> is the "highest" Bool enum, its own successor is also C<True>.
C<succ> is short for successor. In many languages, the C<succ> function is used to return the "next" enum, also known as the successor. Bool is a special enum with only two values, C<False> and C<True>. When sorted, C<False> comes first, so C<True> is its successor. And since C<True> is the "highest" Bool enum, its own successor is also C<True>.
=head2 routine pred
Expand All @@ -30,7 +30,7 @@ Returns C<False>.
say True.pred; # False
say False.pred; # False
pred is short for predecessor. In many languages, the pred function is used to return the "previous" enum, also known as the predecessor. Bool is a special enum with only two values, C<False> and C<True>. When sorted, C<False> comes first, so C<False> is the predecessor to C<True>. And since C<False> is the "loweset" Bool enum, its own predecessor is also C<False>.
C<pred> is short for predecessor. In many languages, the C<pred> function is used to return the "previous" enum, also known as the predecessor. Bool is a special enum with only two values, C<False> and C<True>. When sorted, C<False> comes first, so C<False> is the predecessor to C<True>. And since C<False> is the "loweset" Bool enum, its own predecessor is also C<False>.
=head2 routine enums
Expand Down

0 comments on commit 30c2714

Please sign in to comment.