summaryrefslogtreecommitdiff
path: root/src/main.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.zig')
-rw-r--r--src/main.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.zig b/src/main.zig
index 45e5e36..59a0fbc 100644
--- a/src/main.zig
+++ b/src/main.zig
@@ -56,7 +56,7 @@ pub fn main() !void {
56 // while (iter.next()) |_| result += 1; 56 // while (iter.next()) |_| result += 1;
57 // while (iter.next()) |line| result += strWidth(line, &data); 57 // while (iter.next()) |line| result += strWidth(line, &data);
58 while (iter.next()) |line| { 58 while (iter.next()) |line| {
59 const nfc = try n.nfd(allocator, line); 59 const nfc = try n.nfkc(allocator, line);
60 result += nfc.slice.len; 60 result += nfc.slice.len;
61 // nfc.deinit(); 61 // nfc.deinit();
62 } 62 }