Skip to content

Commit

Permalink
clean up various doc links
Browse files Browse the repository at this point in the history
  • Loading branch information
jsoref committed Jun 9, 2016
1 parent cd60a73 commit 3dccf05
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion doc/Language/operators.pod
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ L<#prefix ...> etc. stub operators.
Defining custom operators is covered in
L</language/functions#Defining_Operators>.
L<Defining Operators functions|/language/functions#Defining_Operators>.
=head1 Meta Operators
Expand Down
2 changes: 1 addition & 1 deletion doc/Type/Cool.pod
Original file line number Diff line number Diff line change
Expand Up @@ -1067,7 +1067,7 @@ Usage:
say (0..0x1FFFF).sort(*.uniname.chars)[*-1].chr.uniname;
# «ARABIC LIGATURE UIGHUR KIRGHIZ YEH WITH HAMZA ABOVE WITH ALEF MAKSURA INITIAL FORM␤»
Interprets the invocant / first argument as a L</type/Str>, and returns the
Interprets the invocant / first argument as a L<Str|/type/Str>, and returns the
Unicode codepoint name of the first character. To convert a whole string use L<uninames|#routine_uninames>.
=head2 routine uninames
Expand Down
2 changes: 1 addition & 1 deletion doc/Type/CurrentThreadScheduler.pod
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
class CurrentThreadScheduler does Scheduler { ... }
C<CurrentThreadScheduler> executes tasks on the current threads. This means
that L<#method cue> blocks until the code has finished executing.
that L<Scheduler#method cue> blocks until the code has finished executing.
=end pod
4 changes: 2 additions & 2 deletions doc/Type/Dateish.pod
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ L<Str|/type/Str>. If none was provided at object construction, a
default formatter is used. In that case the method will return a
Callable type object.
The formatting function is called by L<#method Str> with the invocant as its
only argument.
The formatting function is called by L<DateTime#method Str> with the
invocant as its only argument.
my $dt = Date.new('2015-12-31'); # (no formatter specified)
say $dt.formatter.WHAT; # (Callable)
Expand Down
3 changes: 2 additions & 1 deletion doc/Type/Mu.pod
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,8 @@ Marks a type as being exported, that is, available to external users.
A user of a module or class automatically gets all the symbols imported that
are marked as C<is export>.
See L</language/modules#Exporting_and_Selective_Importing> for more details.
See L<Exporting and Selective Importing Modules|/language/modules#Exporting_and_Selective_Importing>
for more details.
=head2 method take
Expand Down
3 changes: 2 additions & 1 deletion doc/Type/Routine.pod
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,8 @@ say double 21; # 42
From inside another file you'd say C<use Foo;> to load a module and import the
exported functions.
See L</language/modules#Exporting and Selective Importing> for more details.
See L<Exporting and Selective Importing Modules|/language/modules#Exporting and Selective Importing>
for more details.
=head2 trait is DEPRECATED
Expand Down

0 comments on commit 3dccf05

Please sign in to comment.