Skip to content

Commit

Permalink
Last accidental markdown closes #2022
Browse files Browse the repository at this point in the history
  • Loading branch information
JJ committed May 15, 2018
1 parent bfd97bf commit 0d6b801
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/Type/Cool.pod6
Expand Up @@ -1123,7 +1123,7 @@ You can only use one of the C<:k, :v, :kv, :p> adverbs in a single call
to C<split>.
Note that empty chunks are not removed from the result list.
For that behavior, use the `:skip-empty` named argument:
For that behavior, use the C<:skip-empty> named argument:
say ("f,,b,c,d".split: /","/ ).perl; # OUTPUT: «("f", "", "b", "c", "d")␤»
say ("f,,b,c,d".split: /","/, :skip-empty).perl; # OUTPUT: «("f", "b", "c", "d")␤»
Expand Down

0 comments on commit 0d6b801

Please sign in to comment.