Skip to content

Commit 32b2ebc

Browse files
author
Jan-Olof Hendig
committed
Fixed even more broken links. AlexDaniel++
1 parent a72b152 commit 32b2ebc

File tree

4 files changed

+16
-12
lines changed

4 files changed

+16
-12
lines changed

doc/Type/ComplexStr.pod6

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,10 @@ Defined as:
6262
6363
If C<$value> is L<Numeric> (including another
6464
L<allomorph|/language/glossary#index-entry-Allomorph>), checks if invocant's
65-
L<Numeric> part L<ACCEPTS> the C<$value>. If C<$value> is L<Str>, checks if
66-
invocant's L<Str> part L<ACCEPTS> the C<$value>. If value is anything else,
67-
checks if both L<Numeric> and L<Str> parts L<ACCEPTS> the C<$value>.
65+
L<Numeric> part L<ACCEPTS|/type/Numeric#method_ACCEPTS> the C<$value>.
66+
If C<$value> is L<Str>, checks if invocant's L<Str> part
67+
L<ACCEPTS|/type/Str#method_ACCEPTS> the C<$value>. If value is anything else,
68+
checks if both L<Numeric> and L<Str> parts C<ACCEPTS> the C<$value>.
6869
6970
say < 5+0i> ~~ "5.0"; # OUTPUT: «False␤»
7071
say < 5+0i> ~~ 5.0 ; # OUTPUT: «True␤»

doc/Type/IntStr.pod6

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,10 @@ Defined as:
6161
6262
If C<$value> is L<Numeric> (including another
6363
L<allomorph|/language/glossary#index-entry-Allomorph>), checks if invocant's
64-
L<Numeric> part L<ACCEPTS> the C<$value>. If C<$value> is L<Str>, checks if
65-
invocant's L<Str> part L<ACCEPTS> the C<$value>. If value is anything else,
66-
checks if both L<Numeric> and L<Str> parts L<ACCEPTS> the C<$value>.
64+
L<Numeric> part L<ACCEPTS|/type/Numeric#method_ACCEPTS> the C<$value>. If
65+
C<$value> is L<Str>, checks if invocant's L<Str> part
66+
L<ACCEPTS|/type/Str#method_ACCEPTS> the C<$value>. If value is anything else,
67+
checks if both L<Numeric> and L<Str> parts C<ACCEPTS> the C<$value>.
6768
6869
say <5> ~~ "5.0"; # OUTPUT: «False␤»
6970
say <5> ~~ 5.0 ; # OUTPUT: «True␤»

doc/Type/NumStr.pod6

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,10 @@ Defined as:
6161
6262
If C<$value> is L<Numeric> (including another
6363
L<allomorph|/language/glossary#index-entry-Allomorph>), checks if invocant's
64-
L<Numeric> part L<ACCEPTS> the C<$value>. If C<$value> is L<Str>, checks if
65-
invocant's L<Str> part L<ACCEPTS> the C<$value>. If value is anything else,
66-
checks if both L<Numeric> and L<Str> parts L<ACCEPTS> the C<$value>.
64+
L<Numeric> part L<ACCEPTS|/type/Numeric#method_ACCEPTS> the C<$value>. If
65+
C<$value> is L<Str>, checks if invocant's L<Str> part
66+
L<ACCEPTS|/type/Str#method_ACCEPTS> the C<$value>. If value is anything else,
67+
checks if both L<Numeric> and L<Str> parts C<ACCEPTS> the C<$value>.
6768
6869
say <5e0> ~~ "5.0"; # OUTPUT: «False␤»
6970
say <5e0> ~~ 5.0 ; # OUTPUT: «True␤»

doc/Type/RatStr.pod6

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,10 @@ Defined as:
6161
6262
If C<$value> is L<Numeric> (including another
6363
L<allomorph|/language/glossary#index-entry-Allomorph>), checks if invocant's
64-
L<Numeric> part L<ACCEPTS> the C<$value>. If C<$value> is L<Str>, checks if
65-
invocant's L<Str> part L<ACCEPTS> the C<$value>. If value is anything else,
66-
checks if both L<Numeric> and L<Str> parts L<ACCEPTS> the C<$value>.
64+
L<Numeric> part L<ACCEPTS|/type/Numeric#method_ACCEPTS> the C<$value>. If
65+
C<$value> is L<Str>, checks if invocant's L<Str> part
66+
L<ACCEPTS|/type/Str#method_ACCEPTS> the C<$value>. If value is anything else,
67+
checks if both L<Numeric> and L<Str> parts C<ACCEPTS> the C<$value>.
6768
6869
say <5.0> ~~ "5"; # OUTPUT: «False␤»
6970
say <5.0> ~~ 5 ; # OUTPUT: «True␤»

0 commit comments

Comments
 (0)