From 1621715ad8eb8af82a092101750c7c23e2c59ad3 Mon Sep 17 00:00:00 2001 From: Yves Biener Date: Sat, 17 Jan 2026 12:29:42 +0100 Subject: [PATCH] lint: correct typo --- src/input.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input.zig b/src/input.zig index 6eafb19..ef76893 100644 --- a/src/input.zig +++ b/src/input.zig @@ -87,7 +87,7 @@ pub const Key = packed struct { ((this.cp >= 0x0080 and this.cp <= 0x07FF) or (this.cp >= 0x0800 and this.cp <= 0xFFFF) or (this.cp >= 0x100000 and this.cp <= 0x10FFFF)) and // allowed unicode character ranges (2 - 4 byte characters) - (this.cp < 57348 or this.cp > 57454); // no other predifined meanings (i.e. arrow keys, etc.) + (this.cp < 57348 or this.cp > 57454); // no other predefined meanings (i.e. arrow keys, etc.) } /// Determine if the `Key` is an ascii character that can be printed to