File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -87,13 +87,12 @@ If it's called without an argument then it returns just one pick:
87
87
88
88
say Bool.pick; # OUTPUT: «True»
89
89
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:
92
91
93
92
say Bool.pick(1); # OUTPUT: «(False)»
94
93
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>:
97
96
98
97
say Bool.pick(*); # OUTPUT: «(False True)»
99
98
You can’t perform that action at this time.
0 commit comments