Skip to content

Commit 07f5243

Browse files
committed
Fix some type links
1 parent c81f920 commit 07f5243

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

doc/Language/control.rakudoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ over the more conventional C<my $username = …; if $username {…}>.
292292
Compare L<C<with>|/language/control#with>, which tests
293293
for definedness rather than truth, and topicalizes by default.
294294
(The second C<if> in the above example could be replaced by C<with> if the routine
295-
C<get-user-id> returned C<Nil> rather than 0 for nonexistent usernames.)
295+
C<get-user-id> returned L<C<Nil>|/type/Nil> rather than 0 for nonexistent usernames.)
296296

297297
=head2 X<C<else/elsif>|Control flow,else elsif>
298298

doc/Language/glossary.rakudoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ as shown in the following examples:
6868

6969
Similarly to the angle brackets L<C«<…>»|/language/quoting#Word_quoting:_<_>> in the first line,
7070
other circumfix operators with their usual semantics can be used for stating the value,
71-
e.g. C<:foo[…]> for an array and C<:foo{…}> for a hash or even a L<Block|/type/Block>.
71+
e.g. C<:foo[…]> for an array and C<:foo{…}> for a hash or even a L<C<Block>|/type/Block>.
7272
With parentheses like in the second and third line, nearly all constructs can be used inside,
7373
notably L<quoting constructs|/language/quoting> and L<regexes|/language/regexes>.
7474

doc/Language/signatures.rakudoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -489,8 +489,8 @@ so that even an instantiated L<C<Failure>|/type/Failure> acts as an undefined va
489489

490490
=head2 Constraining signatures of L<C<Callable>|/type/Callable>s
491491

492-
The signature of a L<Callable|/type/Callable> parameter can be constrained by
493-
specifying a L<Signature|/type/Signature> literal right after the parameter
492+
The signature of a L<C<Callable>|/type/Callable> parameter can be constrained by
493+
specifying a L<C<Signature>|/type/Signature> literal right after the parameter
494494
(no whitespace allowed):
495495

496496
=begin code :skip-test<compile time error>
@@ -724,7 +724,7 @@ the signature to one of the following:
724724
(::T Numeric \a, T(Cool) \b )
725725

726726
See also section L<method type_captures|/type/Parameter#method_type_captures>
727-
in the type reference for C<Parameter>.
727+
in the type reference for L<C<Parameter>|/type/Parameter>.
728728

729729

730730
X<|Language,positional argument>

0 commit comments

Comments
 (0)