Skip to content

Commit 8293b83

Browse files
authored
Merge pull request #3661 from jjatria/patch-1
Simplify use of pick in is-pure documentation
2 parents 72cee90 + 07fa82e commit 8293b83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/Type/Routine.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ To see it an action with a particular compiler you can try this example:
187187
=begin code :preamble<sub syllables {}>
188188
BEGIN { say ‘Begin’ }
189189
say ‘Start’;
190-
say (^100).map: { syllables().pick(2..5).join("") };
190+
say (^100).map: { syllables().pick(4).join("") };
191191
192192
193193
# Example output:

0 commit comments

Comments
 (0)