Fix typo in Config.zig

key scan -> keys can
This commit is contained in:
Mathew Polzin
2023-10-28 18:54:32 -05:00
committed by GitHub
parent c02aebbecf
commit d5776ff017

View File

@ -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.
///