Skip to content

Commit ed99281

Browse files
committed
Merge pull request #468 from tbrowder/master
define the code point properties in the description
2 parents 47fd2ac + 8aff7f6 commit ed99281

File tree

1 file changed

+12
-9
lines changed

1 file changed

+12
-9
lines changed

doc/Language/unicode_texas.pod

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,24 +11,27 @@ if it is different from C<6.c>.
1111
1212
=head1 Alphabetic Characters
1313
14-
Any codepoint that has the C<Ll>, C<Lu>, or C<Lt> property
15-
can be used just like any other alphabetic character from the ASCII range,
16-
like "A" or "a". Any codepoint with the C<Lo> property can be used as
17-
an alphabetic where case distinctions do not matter.
14+
Any codepoint that has the C<Ll> (Letter, lowercase), C<Lu> (Letter,
15+
uppercase), C<Lt> (Letter, titlecase), or C<Lm> (Letter, modifier) property can be used just
16+
like any other alphabetic character from the ASCII range, like "A" or
17+
"a". Any codepoint with the C<Lo> (Letter, other) property can be
18+
used as an alphabetic where case distinctions do not matter.
1819
1920
=head1 Numeric characters
2021
21-
Any codepoint that has the C<Nd> property, can be used as a digit in any
22-
number, unless special cased in the list below.
22+
Any codepoint that has the C<Nd> (Number, decimal digit) property, can
23+
be used as a digit in any number, unless special-cased in the list
24+
below.
2325
2426
=head1 Whitespace characters
2527
26-
Besides spaces and tabs you can use any other unicode whitespace character
27-
that has the C<Zs>, C<Zl> or C<Zp> property.
28+
Besides spaces and tabs you can use any other unicode whitespace
29+
character that has the C<Zs> (Separator, space), C<Zl> (Separator,
30+
line), or C<Zp> (Separator, paragraph) property.
2831
2932
=head1 Numeric values
3033
31-
Any codepoint that has the C<No> property can be used standalone as a numeric value,
34+
Any codepoint that has the C<No> (Number, other) property can be used standalone as a numeric value,
3235
such as ½ and ⅓. (These aren't decimal digit characters, so can't be combined.)
3336
3437
=head1 Other acceptable single codepoints

0 commit comments

Comments
 (0)