diff options
| author | 2025-04-30 12:02:17 -0400 | |
|---|---|---|
| committer | 2025-04-30 12:02:17 -0400 | |
| commit | 7a212f5ec5aabf016d17d3ed28649e7982b810ef (patch) | |
| tree | c6b06b0a0afb0ed2ba18f147d9ee200e5eee09a1 /src/unicode_tests.zig | |
| parent | Factor out 'Data' for grapheme and DisplayWidth (diff) | |
| download | zg-7a212f5ec5aabf016d17d3ed28649e7982b810ef.tar.gz zg-7a212f5ec5aabf016d17d3ed28649e7982b810ef.tar.xz zg-7a212f5ec5aabf016d17d3ed28649e7982b810ef.zip | |
grapheme now Graphemes, Data files gone
Diffstat (limited to 'src/unicode_tests.zig')
| -rw-r--r-- | src/unicode_tests.zig | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/unicode_tests.zig b/src/unicode_tests.zig index de1b9ec..3cb5df5 100644 --- a/src/unicode_tests.zig +++ b/src/unicode_tests.zig | |||
| @@ -7,10 +7,10 @@ const mem = std.mem; | |||
| 7 | const testing = std.testing; | 7 | const testing = std.testing; |
| 8 | const unicode = std.unicode; | 8 | const unicode = std.unicode; |
| 9 | 9 | ||
| 10 | const grapheme = @import("grapheme"); | 10 | const grapheme = @import("Graphemes"); |
| 11 | const Grapheme = @import("grapheme").Grapheme; | 11 | const Grapheme = @import("Graphemes").Grapheme; |
| 12 | const Graphemes = @import("grapheme"); | 12 | const Graphemes = @import("Graphemes"); |
| 13 | const GraphemeIterator = @import("grapheme").Iterator; | 13 | const GraphemeIterator = @import("Graphemes").Iterator; |
| 14 | const Normalize = @import("Normalize"); | 14 | const Normalize = @import("Normalize"); |
| 15 | 15 | ||
| 16 | comptime { | 16 | comptime { |