From 836b6c4409fbb2a9b16a972c26de631e859a6581 Mon Sep 17 00:00:00 2001 From: amy universe <86204514+tomara-x@users.noreply.github.com> Date: Sun, 16 Jun 2024 21:59:51 +0300 Subject: [PATCH] fix typo (#13880) # Objective "wtate" an off-by-one typo in the winit_config.rs file ## Solution "state" --- crates/bevy_winit/src/winit_config.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/bevy_winit/src/winit_config.rs b/crates/bevy_winit/src/winit_config.rs index 1043840866..6632814449 100644 --- a/crates/bevy_winit/src/winit_config.rs +++ b/crates/bevy_winit/src/winit_config.rs @@ -75,11 +75,11 @@ pub enum UpdateMode { /// **Note:** This has no upper limit. /// The [`App`](bevy_app::App) will wait indefinitely if you set this to [`Duration::MAX`]. wait: Duration, - /// Reacts to device events, that will wake up the loop if it's in a wait wtate + /// Reacts to device events, that will wake up the loop if it's in a wait state react_to_device_events: bool, - /// Reacts to user events, that will wake up the loop if it's in a wait wtate + /// Reacts to user events, that will wake up the loop if it's in a wait state react_to_user_events: bool, - /// Reacts to window events, that will wake up the loop if it's in a wait wtate + /// Reacts to window events, that will wake up the loop if it's in a wait state react_to_window_events: bool, }, }