Skip to content

Commit fdc9b34

Browse files
author
Jan-Olof Hendig
committed
Another five broken links fixed
1 parent 9d0cf6e commit fdc9b34

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

doc/Language/operators.pod

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1530,7 +1530,7 @@ A comparison:
15301530
say $_ if /A/ ff /C/ for @list; # prints A, B, and C
15311531
say $_ if /A/ ^ff /C/ for @list; # prints B and C
15321532
1533-
The sed-like version can be found in L<C<^fff>>.
1533+
The sed-like version can be found in L<C<^fff>|/routine/^fff>.
15341534
15351535
This operator cannot be overloaded, as it is handled specially by the compiler.
15361536
@@ -1560,7 +1560,7 @@ the stop or start condition (or both).
15601560
say $_ if /A/ ff /C/ for @list; # prints A, B, and C
15611561
say $_ if /A/ ^ff^ /C/ for @list; # prints B
15621562
1563-
The sed-like version can be found in L<C<^fff^>>.
1563+
The sed-like version can be found in L<C<^fff^>|/routine/^fff^>.
15641564
15651565
This operator cannot be overloaded, as it is handled specially by the compiler.
15661566
@@ -1596,7 +1596,7 @@ Like L<C<fff>>, except it does not return true for matches to the left argument.
15961596
say $_ if /A/ fff /C/ for @list; # prints A, B, and C
15971597
say $_ if /A/ ^fff /C/ for @list; # prints B and C
15981598
1599-
For the non-sed version, see L<C<^ff>>.
1599+
For the non-sed version, see L<C<^ff>|/routine/^ff>.
16001600
16011601
This operator cannot be overloaded, as it is handled specially by the compiler.
16021602
@@ -1625,7 +1625,7 @@ right argument.
16251625
say $_ if /A/ fff /C/ for @list; # prints A, B, and C
16261626
say $_ if /A/ ^fff^ /C/ for @list; # prints B
16271627
1628-
For the non-sed version, see L<C<^ff^>>.
1628+
For the non-sed version, see L<C<^ff^>|/routine/^ff^>.
16291629
16301630
This operator cannot be overloaded, as it is handled specially by the compiler.
16311631

doc/Type/Hash.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ implement a rudimentary, yet type-safe, logging mechanism. We utilize a named L<
208208
variable for keeping track of the previous C<Instant> so that we can provide an interval.
209209
210210
The whole point of object hashes is to keep keys as objects-in-themselves.
211-
Currently object hashes utilize the L<WHICH> method of an object, which returns a
211+
Currently object hashes utilize the L<WHICH|/routine/WHICH> method of an object, which returns a
212212
unique identifier for every mutable object. This is the keystone upon which the object
213213
identity operator (L<===>) rests. Order and containers really matter here as the order of
214214
C<.keys> is undefined and one anonymous list is never L<===> to another.

0 commit comments

Comments
 (0)