Skip to content

Commit 33238e3

Browse files
committed
Remove .html from internal doc links.
1 parent cffbb74 commit 33238e3

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

doc/Language/faq.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ foo(1) # ===SORRY!=== Error while compiling ...
331331
332332
L«C<Any>|/type/Any» is a top level class most objects inherit from.
333333
The C<Any> type object is
334-
L<the default value|/type/Attribute.html#Trait_is_default> on variables and
334+
L<the default value|/type/Attribute#Trait_is_default> on variables and
335335
parameters without an explicit type constraint, which means you'll
336336
likely see C<(Any)> printed when you output a L<gist|/routine/gist> of
337337
a variable without any value, such as using L«C<say> routine|/routine/say»:

doc/Language/nativecall.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -650,7 +650,7 @@ say $esponja;
650650
NativeCall also supports native functions that take functions as arguments. One
651651
example of this is using function pointers as callbacks in an event-driven
652652
system. When binding these functions via NativeCall, one need only provide the
653-
equivalent signature as L<a constraint on the code parameter|/type/Signature.html#Constraining_signatures_of_Callables>:
653+
equivalent signature as L<a constraint on the code parameter|/type/Signature#Constraining_signatures_of_Callables>:
654654
655655
use NativeCall;
656656
# void SetCallback(int (*callback)(const char *))

doc/Type/Array.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ B<Note> from version 6.d, C<.perl> can be called on multi-dimensional arrays.
1818
1919
=head2 method gist
2020
21-
Exactly the same as L«C<List.gist>|/type/List.html#method_gist»,
21+
Exactly the same as L«C<List.gist>|/type/List#method_gist»,
2222
except using square brackets for surrounding delimiters.
2323
2424
=head2 routine pop

doc/Type/Str.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1044,7 +1044,7 @@ The C<:nth> adverb has readable English-looking variants:
10441044
10451045
B<NOTE:> I<<< C<.subst-mutate> is deprecated in the 6.d version, and will be
10461046
removed in future ones. You can use L<subst|/routine/subst> with L«C<.=> method
1047-
call assignment operator|/routine/.=.html» or L«C<s///> substitution
1047+
call assignment operator|/routine/.=» or L«C<s///> substitution
10481048
operator|/syntax/s$SOLIDUS$SOLIDUS$SOLIDUS» instead. >>>
10491049
10501050
Where L<subst|/routine/subst> returns the modified string and leaves the

0 commit comments

Comments
 (0)