Skip to content

Commit 11d00c5

Browse files
committed
Fix some links
This is going to help with #561 a bit. There are probably better ways to fix these links, but that's good enough.
1 parent 8480024 commit 11d00c5

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

doc/Language/operators.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ Technically this is not an operator, but syntax special-cased in the compiler.
503503
=head2 postfix C«.=»
504504
505505
A X<mutating method call>. C<$invocant.=method> desugars to
506-
C<$invocant = $invocant.method>, similar to L<C<op=>>.
506+
C<$invocant = $invocant.method>, similar to L<C<=>>.
507507
508508
Technically this is not an operator, but syntax special-cased in the compiler.
509509

doc/Type/CurrentThreadScheduler.pod

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
class CurrentThreadScheduler does Scheduler { ... }
88
99
C<CurrentThreadScheduler> executes tasks on the current threads. This means
10-
that L<Scheduler#method cue> blocks until the code has finished executing.
10+
that L<method cue|/type/Scheduler#method cue> blocks until the code has
11+
finished executing.
1112
1213
=end pod

doc/Type/Dateish.pod

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ L<Str|/type/Str>. If none was provided at object construction, a
6363
default formatter is used. In that case the method will return a
6464
Callable type object.
6565
66-
The formatting function is called by L<DateTime#method Str> with the
66+
The formatting function is called by
67+
L<DateTime method Str|/type/DateTime#method Str> with the
6768
invocant as its only argument.
6869
6970
my $dt = Date.new('2015-12-31'); # (no formatter specified)

doc/Type/Mu.pod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,8 +156,8 @@ Classes may provide their own C<new> method to override this default.
156156
157157
C<new> triggers an object construction mechanism that calls submethods named
158158
C<BUILD> in each class of an inheritance hierarchy, if they exist. See
159-
L<the documentation on object construction|/language/objects#Object
160-
Construction> for more information.
159+
L<the documentation on object construction|/language/objects#Object Construction>
160+
for more information.
161161
162162
=head2 method bless
163163

0 commit comments

Comments
 (0)