gpui: Fix typo in handle_gpui_events (#36431)

This PR fixes a typo I noticed in the `handle_gpui_events` method name.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2025-08-18 13:27:23 -04:00 committed by GitHub
parent ed155ceba9
commit fa61c3e24d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -227,7 +227,7 @@ impl WindowsPlatform {
| WM_GPUI_CLOSE_ONE_WINDOW | WM_GPUI_CLOSE_ONE_WINDOW
| WM_GPUI_TASK_DISPATCHED_ON_MAIN_THREAD | WM_GPUI_TASK_DISPATCHED_ON_MAIN_THREAD
| WM_GPUI_DOCK_MENU_ACTION => { | WM_GPUI_DOCK_MENU_ACTION => {
if self.handle_gpui_evnets(msg.message, msg.wParam, msg.lParam, &msg) { if self.handle_gpui_events(msg.message, msg.wParam, msg.lParam, &msg) {
return; return;
} }
} }
@ -240,7 +240,7 @@ impl WindowsPlatform {
} }
// Returns true if the app should quit. // Returns true if the app should quit.
fn handle_gpui_evnets( fn handle_gpui_events(
&self, &self,
message: u32, message: u32,
wparam: WPARAM, wparam: WPARAM,