Skip to content

Commit

Permalink
Rearrange poorly placed sentence
Browse files Browse the repository at this point in the history
  • Loading branch information
zoffixznet committed Sep 10, 2016
1 parent 54bf52f commit 563b803
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doc/Type/Cool.pod6
Expand Up @@ -982,13 +982,13 @@ C<:kv> adds both indexes and matches:
say 'abc'.split(/b/, :kv); # (a 0 「b」 c)
You can only use one of the C<:k, :v, :kv, :p> adverbs in a single call
to C<split>.
and C<:p> adds them as L<Pairs|/type/Pair>:
say 'abc'.split(/b/, :p) # (a 0 => 「b」 c)
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:
Expand Down

0 comments on commit 563b803

Please sign in to comment.