Skip to content

Commit 88e688f

Browse files
committed
Beter explain about Unicode NFKD and NFKC forms
1 parent efcbc37 commit 88e688f

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

doc/Type/NFKC.pod6

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@
66
77
class NFKC is Uni {}
88
9-
A Codepoint string in the "KC" L<Unicode Normalization Form|http://www.unicode.org/reports/tr15/>
10-
9+
A Codepoint string in Unicode Normalization Form KC. It is created by Compatibility Decomposition,
10+
followed by Canonical Composition. For more information on what this means, see
11+
L<Unicode TR15|http://www.unicode.org/reports/tr15/>.
1112
=end pod
1213

1314
# vim: expandtab shiftwidth=4 ft=perl6

doc/Type/NFKD.pod6

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
77
class NFKD is Uni {}
88
9-
A Codepoint string in the "KD" L<Unicode Normalization Form|http://www.unicode.org/reports/tr15/>
9+
A Codepoint string in Unicode Normalization Form KD. It is created by Compatibility Decomposition.
10+
For more information on what this means, see L<Unicode TR15|http://www.unicode.org/reports/tr15/>.
1011
1112
=end pod
1213

0 commit comments

Comments
 (0)