Skip to content

Commit 1635733

Browse files
raiphcoke
authored andcommitted
Update Bool.rakudoc
1 parent 670bdd1 commit 1635733

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

doc/Type/Bool.rakudoc

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,13 +87,12 @@ If it's called without an argument then it returns just one pick:
8787

8888
say Bool.pick; # OUTPUT: «True␤»
8989

90-
If it's called with a C<$count> of one then it returns a C<Seq> with either
91-
C<True> or C<False>):
90+
If it's called with a C<$count> of one then it returns a C<Seq> with just one pick:
9291

9392
say Bool.pick(1); # OUTPUT: «(False)␤»
9493

95-
If C<$count> is C<*> or greater than or equal to two then it returns a two
96-
element C<Seq> that's either C<True> then C<False> or C<False> then C<True>:
94+
If C<$count> is C<*> or greater than or equal to two then it returns a C<Seq>
95+
with I<two> elements -- either C<True> then C<False>, or C<False> then C<True>:
9796

9897
say Bool.pick(*); # OUTPUT: «(False True)␤»
9998

0 commit comments

Comments
 (0)