Skip to content

Commit

Permalink
link to /type/Slip
Browse files Browse the repository at this point in the history
  • Loading branch information
gfldex committed Oct 3, 2016
1 parent 1c5f8fb commit c0ca8fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/Language/list.pod6
Expand Up @@ -151,7 +151,7 @@ for details.
=head2 Slips
Sometimes you want to insert the elements of a list into another list.
This can be done with a special type of list called a C<Slip>.
This can be done with a special type of list called a L<Slip|/type/Slip>.
say (1, (2, 3), 4) eqv (1, 2, 3, 4); # says False
say (1, Slip.new(2, 3), 4) eqv (1, 2, 3, 4); # says True
Expand Down

0 comments on commit c0ca8fa

Please sign in to comment.