Skip to content

Commit 9156582

Browse files
committed
Converts "below" to link to section it refers to.
Which would close #1883. Incidentally, it works towards solving #1416 by adding a reference to **@. The second concept mentioned there, **% is not actually documented, but we can document it right there.
1 parent 91b5c7b commit 9156582

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/Type/Signature.pod6

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ is not available inside the called function.
499499
500500
Slurpy parameters have special behaviors when combined with some
501501
L<traits and modifiers|#Parameter_Traits_and_Modifiers>,
502-
as described below.
502+
as described in L<the section on slurpy array parameters|/type/Signature#Types_of_Slurpy_Array_Parameters>.
503503
504504
=head2 Types of Slurpy Array Parameters
505505
@@ -534,7 +534,7 @@ a(($_ for 1, 2, 3)); # OUTPUT: «[1, 2, 3]»
534534
A single asterisk slurpy flattens all given iterables, effectively hoisting any
535535
object created with commas up to the top level.
536536
537-
=head3 Unflattened Slurpy
537+
=head3 X<Unflattened Slurpy|parameter, **@>
538538
539539
Slurpy parameters declared with two stars do not flatten any L<Iterable|/type/Iterable> arguments
540540
within the list, but keep the arguments more or less as-is:

0 commit comments

Comments
 (0)