From c49477746ed376a2a6ea58032a38c5aad5846628 Mon Sep 17 00:00:00 2001 From: Conrad Irwin Date: Mon, 22 Jan 2024 09:56:59 -0700 Subject: [PATCH] TYPO --- crates/gpui/src/key_dispatch.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/gpui/src/key_dispatch.rs b/crates/gpui/src/key_dispatch.rs index 331c3b602df27e7b5300d2af5e33265bd9ae188d..dd5a7ab84e25e267012de5e9dfb216404b8dfa7d 100644 --- a/crates/gpui/src/key_dispatch.rs +++ b/crates/gpui/src/key_dispatch.rs @@ -1,7 +1,7 @@ /// KeyDispatch is where GPUI deals with binding actions to key events. /// /// The key pieces to making a key binding work are to define an action, -/// implement a method that takes that action as a type paramater, +/// implement a method that takes that action as a type parameter, /// and then to register the action during render on a focused node /// with a keymap context: ///