Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Language/subscripts.pod6: fix a few routine links.
  • Loading branch information
cfa committed Jan 4, 2019
1 parent df15cce commit 005ad89
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions doc/Language/subscripts.pod6
Expand Up @@ -582,7 +582,7 @@ If you I<don't> want to skip nonexistent elements, use the negated form:
Can be combined with the L<#:exists> and L<#:delete> adverbs.
See also the L<pairs|/type/pairs> routine.
See also the L<pairs|/routine/pairs> routine.
X<:kv (subscript adverb)>
=head2 C<:kv>
Expand Down Expand Up @@ -616,7 +616,7 @@ This adverb is commonly used to iterate over slices:
Can be combined with the L<#:exists> and L<#:delete> adverbs.
See also the L<kv|/type/kv> routine.
See also the L<kv|/routine/kv> routine.
X<:k (subscript adverb)>
=head2 C<:k>
Expand All @@ -638,7 +638,7 @@ If you I<don't> want to skip nonexistent elements, use the negated form:
say %month<Jan Foo Mar>:!k; # OUTPUT: «(Jan Foo Mar)␤»
=end code
See also the L<keys|/type/keys> routine.
See also the L<keys|/routine/keys> routine.
X<:v (subscript adverb)>
=head2 C<:v>
Expand All @@ -664,7 +664,7 @@ If you I<don't> want to skip nonexistent elements, use the negated form:
say %month<Jan Foo Mar>:!v; # OUTPUT: «(1 (Any) 3)␤»
=end code
See also the L<values|/type/values> routine.
See also the L<values|/routine/values> routine.
=head1 Custom types
Expand Down Expand Up @@ -1077,4 +1077,4 @@ the object for the first time. Should return the invocant.
=end pod

# vim: expandtab softtabstop=4 shiftwidth=4 ft=perl6
# vim: expandtab softtabstop=4 shiftwidth=4 ft=perl6

0 comments on commit 005ad89

Please sign in to comment.