From d5776ff01793b4d8f2f7499b971eabc5b50319f7 Mon Sep 17 00:00:00 2001 From: Mathew Polzin Date: Sat, 28 Oct 2023 18:54:32 -0500 Subject: [PATCH] Fix typo in Config.zig key scan -> keys can --- src/config/Config.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/Config.zig b/src/config/Config.zig index 453913937..2c0e76ee9 100644 --- a/src/config/Config.zig +++ b/src/config/Config.zig @@ -301,7 +301,7 @@ command: ?[]const u8 = null, /// "ctrl+a", "ctrl+shift+b", "up". Some notes: /// /// - modifiers cannot repeat, "ctrl+ctrl+a" is invalid. -/// - modifiers and key scan be in any order, "shift+a+ctrl" is weird, +/// - modifiers and keys can be in any order, "shift+a+ctrl" is weird, /// but valid. /// - only a single key input is allowed, "ctrl+a+b" is invalid. ///