@@ -255,7 +255,7 @@ with L<lists|/type/List>, despite the name of the L<.index routine|/type/Str#rou
255
255
256
256
= head2 Lists become strings, so beware .index()ing
257
257
258
- L < List|/type/List > inherits from L < Cool|/type/Cool/ > , which provides access to
258
+ L < List|/type/List > inherits from L < Cool|/type/Cool > , which provides access to
259
259
L < .index|/type/Str#routine_index > . Because of the way C < .index >
260
260
L < coerces|/type/List#method_Str > a List into a L < Str|/type/Str > , this can
261
261
sometimes appear to be returning the index of an element in the list, but
@@ -454,7 +454,7 @@ say "cba".comb.sort.join; # OUTPUT: «abc»
454
454
455
455
= head2 C < .chars > Gets the Number of Graphemes, not Codepoints
456
456
457
- In Perl 6, L « C < .chars > |chars> » returns the number of graphemes, or user visible characters.
457
+ In Perl 6, L « C < .chars > |chars» returns the number of graphemes, or user visible characters.
458
458
These graphemes could be made up of a letter plus an accent for example.
459
459
If you need the number of codepoints, you should use L « C < .codes > |codes» . If you need
460
460
the number of bytes when encoded as UTF8, you should use C < .encode.bytes > to
@@ -1200,7 +1200,7 @@ $b.sayit; # nothing
1200
1200
1201
1201
= head2 C < LEAVE > phaser and C < exit >
1202
1202
1203
- Using L « C < LEAVE > |/syntax/ LEAVE» phaser to perform graceful resource
1203
+ Using L « C < LEAVE > |/language/phasers# LEAVE» phaser to perform graceful resource
1204
1204
termination is a common pattern, but it does not cover the case when
1205
1205
the program is stopped with L « C < exit > |/routine/exit» .
1206
1206
0 commit comments