mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
fix typo (#13880)
# Objective "wtate" an off-by-one typo in the winit_config.rs file ## Solution "state"
This commit is contained in:
parent
cde610577d
commit
836b6c4409
1 changed files with 3 additions and 3 deletions
|
@ -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,
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue