Skip to content

Commit 37f0ed6

Browse files
committed
Update S15 so as not to include references to a uniprops hash.
It had been changed in some places but not others.
1 parent acc747f commit 37f0ed6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

S15-unicode.pod

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ By default, C<uniname> tries to find the Unicode name associated with that
411411
character, returning a code point label (see
412412
L<UAX#44|http://www.unicode.org/reports/tr44/tr44-12.html#Code_Point_Labels> and
413413
section 4.8 of the Standard). This is nearly identical to accessing the C<Name>
414-
property from the C<uniprops> hash, except that the hash holds an empty string
414+
property from the C<uniprops> list, except that the list holds an empty string
415415
for undefined names.
416416
417417
uninames("A\x[00]¶\x[2028,80]")
@@ -426,7 +426,7 @@ The C<:one> adverb instead tries to find the Unicode 1.0 name associated with
426426
the character (this would most often be useful with getting a proper name for
427427
control codes). If there is no Unicode 1.0 name associated with the character, a
428428
code point label is returned. This is similar to the C<Unicode_1_Name> property
429-
of the C<uniprops> hash, except that the hash holds an empty string for
429+
of the C<uniprops> list, except that the list holds an empty string for
430430
undefined Unicode 1.0 names.
431431
432432
uninames("A\x[00]¶\x[2028,80]", :one)
@@ -474,12 +474,12 @@ name.
474474
The definition of "graphic" and "format" characters is covered in Section 2.4,
475475
Table 2-3 of the current Unicode Standard.
476476
477-
This command does not deal with name aliases; use the C<Name_Alias> property
478-
from the C<uniprops> hash.
477+
This command does not deal with name aliases; get the C<Name_Alias> property
478+
from C<uniprop>.
479479
480480
If a strict adherence to the values in those properties is desired (i.e. return
481481
null strings instead of code-point labels), the C<Name> and C<Unicode_1_Name>
482-
properties of the C<uniprops> hash may be used.
482+
properties my be used.
483483
484484
=head2 Numeric Value
485485

0 commit comments

Comments
 (0)