Skip to content

Commit 9454b1d

Browse files
committed
More massaging to unbreak links.
1 parent 2c77d0f commit 9454b1d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/Language/control.pod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ executed.
4040
Unless it stands alone as a statement, a block simply creates a closure. The
4141
statements inside are not executed immediately. Closures are another topic
4242
and how they are used is explained
43-
L<elsewhere|/language/functions#Blocks and Lambdas>. For now it is just
43+
L<elsewhere|/language/functions#Blocks_and_Lambdas>. For now it is just
4444
important to understand when blocks run and when they do not:
4545
4646
say "We get here"; { say "then here." }; { say "not here"; 0; } or die;
@@ -240,7 +240,7 @@ present:
240240
When you get sick of typing "if not (X)" you may use C<unless> to invert
241241
the sense of a conditional statement. You cannot use C<else> or C<elsif>
242242
with C<unless> because that ends up getting confusing. Other than those
243-
two differences C<unless> works the same as L<if>:
243+
two differences C<unless> works the same as L<#if>:
244244
245245
unless 1 { "1 is false".say } ; # does not say anything, since 1 is true
246246
unless 1 "1 is false".say ; # syntax error, missing block
@@ -302,7 +302,7 @@ for @foo { 42.print } # prints 42 as many times as @foo has elements
302302
303303
=end code
304304
305-
Pointy block syntax or a L<placeholder|/language/variables#The C<^> Twigil>
305+
Pointy block syntax or a L<placeholder|/language/variables#The_^_Twigil>
306306
may be used to name the parameter, of course.
307307
308308
=begin code

0 commit comments

Comments
 (0)