Skip to content

Commit

Permalink
Beter explain about Unicode NFKD and NFKC forms
Browse files Browse the repository at this point in the history
  • Loading branch information
samcv committed Dec 26, 2016
1 parent efcbc37 commit 88e688f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions doc/Type/NFKC.pod6
Expand Up @@ -6,8 +6,9 @@
class NFKC is Uni {}
A Codepoint string in the "KC" L<Unicode Normalization Form|http://www.unicode.org/reports/tr15/>
A Codepoint string in Unicode Normalization Form KC. It is created by Compatibility Decomposition,
followed by Canonical Composition. For more information on what this means, see
L<Unicode TR15|http://www.unicode.org/reports/tr15/>.
=end pod

# vim: expandtab shiftwidth=4 ft=perl6
3 changes: 2 additions & 1 deletion doc/Type/NFKD.pod6
Expand Up @@ -6,7 +6,8 @@
class NFKD is Uni {}
A Codepoint string in the "KD" L<Unicode Normalization Form|http://www.unicode.org/reports/tr15/>
A Codepoint string in Unicode Normalization Form KD. It is created by Compatibility Decomposition.
For more information on what this means, see L<Unicode TR15|http://www.unicode.org/reports/tr15/>.
=end pod

Expand Down

0 comments on commit 88e688f

Please sign in to comment.