We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75aec9a commit 7a1f5c2Copy full SHA for 7a1f5c2
normalization/perl6.md
@@ -4,8 +4,8 @@ Unicode normalization is available in the core language as methods on strings
4
(`Str` onbjects).
5
6
```perl
7
-$nfd = $str.nfd;
8
-$nfc = $str.nfc;
9
-$nfkd = $str.nfkd;
10
-$nfkc = $str.nfkc;
+$nfd = $str.NFD;
+$nfc = $str.NFC;
+$nfkd = $str.NFKD;
+$nfkc = $str.NFKC;
11
```
0 commit comments