mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
Fix typo in window.rs (#10358)
# Objective Fixes a small typo in `bevy_window/src/window.rs` ## Solution Change `Should be used instead 'scale_factor' when set.` to `Should be used instead of 'scale_factor' when set.`
This commit is contained in:
parent
a1681f43d9
commit
6a7b21592f
1 changed files with 1 additions and 1 deletions
|
@ -589,7 +589,7 @@ pub struct WindowResolution {
|
|||
physical_height: u32,
|
||||
/// Code-provided ratio of physical size to logical size.
|
||||
///
|
||||
/// Should be used instead `scale_factor` when set.
|
||||
/// Should be used instead of `scale_factor` when set.
|
||||
scale_factor_override: Option<f64>,
|
||||
/// OS-provided ratio of physical size to logical size.
|
||||
///
|
||||
|
|
Loading…
Reference in a new issue