diff options
author | tcmal <me@aria.rip> | 2024-06-05 22:35:46 +0100 |
---|---|---|
committer | tcmal <me@aria.rip> | 2024-06-05 22:35:46 +0100 |
commit | db34c5ddc6c0304ef13b37869d62fb8e28e7a015 (patch) | |
tree | 1589d32f4f37767de9564da5a82ff6b472308198 /src | |
parent | 2cb4bc8a39d27c82f7db4d7d270f2101b18b5e23 (diff) |
minor lint
Diffstat (limited to 'src')
-rw-r--r-- | src/keys.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keys.rs b/src/keys.rs index 79f1984..07dfb40 100644 --- a/src/keys.rs +++ b/src/keys.rs @@ -173,7 +173,7 @@ impl KeyboardInfo { pub struct Keybind { modifiers: ModMask, key: Keysym, - action: &'static dyn Fn(&mut WM<'_>) -> (), + action: &'static dyn Fn(&mut WM<'_>), } impl std::fmt::Debug for Keybind { |