From eac629f456510ca6e4ab85cccdb488879234c567 Mon Sep 17 00:00:00 2001 From: Madeorsk Date: Wed, 8 Jan 2025 23:07:41 +0100 Subject: [PATCH] Fix import in `utf8ToAscii` example. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 224b1c7..98ab09b 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ std.debug.print("{s}", .{ascii}); // Output: "F". ```zig const std = @import("std"); -const anyascii = @import("anyascii").utf8ToAscii; +const utf8ToAscii = @import("anyascii").utf8ToAscii; // A full string of UTF-8 characters to ASCII characters. const ascii = try utf8ToAscii(allocator, "Blöße");