@@ -221,19 +221,19 @@ of comment
221
221
say 'code again';
222
222
= end code
223
223
224
- = head2 X < Identifiers|identifier, identifiers >
224
+ = head2 X < Identifiers|identifier,identifiers >
225
225
226
226
Identifiers are grammatical building blocks that may be used to give a name
227
- to entities/objects such as constants, variables (e.g. Scalars ) and routines
228
- (e.g. Subs and Methods). In a L < variable name|/language/variables > , any sigil
227
+ to entities/objects such as constants, variables (e.g. C < Scalar > s ) and routines
228
+ (e.g. C < Sub > s and Methods). In a L < variable name|/language/variables > , any sigil
229
229
(and twigil) precedes the identifier and does not form a part thereof.
230
230
231
231
constant c = 299792458; # identifier "c" names an Int
232
232
my $a = 123; # identifier "a" in the name "$a" of a Scalar
233
233
sub hello { say "Hello!" }; # identifier "hello" names a Sub
234
234
235
- Identifiers come in different forms: ordinary identifiers , extended
236
- identifiers, and compound identifiers .
235
+ Identifiers come in different forms: ordinary, extended, and compound
236
+ identifiers.
237
237
238
238
= head3 Ordinary identifiers
239
239
@@ -299,7 +299,7 @@ infix:<*> # the official name of the operator in $a * $b
299
299
infix:«<=» # the official name of the operator in $a <= $b
300
300
= end code
301
301
302
- For all such uses, you can append one or more colon-separated string to an
302
+ For all such uses, you can append one or more colon-separated strings to an
303
303
ordinary identifier to create a so-called I < extended identifier > . When appended
304
304
to an identifier (that is, in postfix position), this colon-separated string
305
305
generates unique variants of that identifier.
0 commit comments