Skip to content

Commit c0ca8fa

Browse files
committed
link to /type/Slip
1 parent 1c5f8fb commit c0ca8fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/Language/list.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ for details.
151151
=head2 Slips
152152
153153
Sometimes you want to insert the elements of a list into another list.
154-
This can be done with a special type of list called a C<Slip>.
154+
This can be done with a special type of list called a L<Slip|/type/Slip>.
155155
156156
say (1, (2, 3), 4) eqv (1, 2, 3, 4); # says False
157157
say (1, Slip.new(2, 3), 4) eqv (1, 2, 3, 4); # says True

0 commit comments

Comments
 (0)