diff --git a/crates/gpui/src/key_dispatch.rs b/crates/gpui/src/key_dispatch.rs index 331c3b602d..dd5a7ab84e 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: ///