Skip to content

Commit 7a1f5c2

Browse files
committed
fix Perl 6 normalization
1 parent 75aec9a commit 7a1f5c2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

normalization/perl6.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ Unicode normalization is available in the core language as methods on strings
44
(`Str` onbjects).
55

66
```perl
7-
$nfd = $str.nfd;
8-
$nfc = $str.nfc;
9-
$nfkd = $str.nfkd;
10-
$nfkc = $str.nfkc;
7+
$nfd = $str.NFD;
8+
$nfc = $str.NFC;
9+
$nfkd = $str.NFKD;
10+
$nfkc = $str.NFKC;
1111
```

0 commit comments

Comments
 (0)