Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix links
  • Loading branch information
gfldex committed Oct 5, 2016
1 parent 5418b0a commit e8d7ef7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doc/Type/Signature.pod6
Expand Up @@ -152,7 +152,7 @@ the C<where>-clause inside the sub-signature.
=head3 Constraining Optional Arguments
L<Optional arguments|Optional_and_Mandatory_Parameters> can have constraints,
L<Optional arguments|#Optional_and_Mandatory_Parameters> can have constraints,
too. Any C<where> clause on any parameter will be executed, even if it's
optional and not provided by the caller. In that case you may have to guard
against undefined values whitin the C<where> clause.
Expand All @@ -161,7 +161,7 @@ against undefined values whitin the C<where> clause.
=head3 Constraining Slurpy Arguments
L<Slurpy arguments|Slurpy_(A.K.A._Variadic)_Parameters> can not have type
L<Slurpy arguments|#Slurpy_(A.K.A._Variadic)_Parameters> can not have type
constraints. A C<where>-clause in conjunction with a L<Junction|/type/Junction>
can be used to that effect.
Expand Down Expand Up @@ -371,7 +371,7 @@ C<**@>.
c(1, [1, 2], ([3, 4], 5)); # [1, [1, 2], ([3, 4], 5)]
c(($_ for 1, 2, 3)); # [1, 2, 3]
For additional discussion and examples, see L<Slurpy Conventions for Functions|/language/funcctions#Slurpy_Conventions>.
For additional discussion and examples, see L<Slurpy Conventions for Functions|/language/functions#Slurpy_Conventions>.
=head2 Type Captures
X<|Type Capture (signature)>
Expand Down

0 comments on commit e8d7ef7

Please sign in to comment.