Skip to content

Commit

Permalink
Fix docs tenses
Browse files Browse the repository at this point in the history
Co-authored-by: sark <[email protected]>
  • Loading branch information
xgbwei and sarkahn authored Oct 10, 2022
1 parent f7689eb commit bcf25d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/bevy_render/src/camera/projection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -146,10 +146,10 @@ pub enum ScalingMode {
/// Use the minimal possible projection size while keeping the aspect ratio.
/// Arguments are in world units.
Auto { min_width: f32, min_height: f32 },
/// Keep the projection's height constant; adjust width to match aspect ratio.
/// Keep the projection's height constant; width will be adjusted to match aspect ratio.
/// The argument is the desired height of the projection in world units.
FixedVertical(f32),
/// Keep the projection's width constant; adjust height to match aspect ratio.
/// Keep the projection's width constant; height will be adjusted to match aspect ratio.
/// The argument is the desired width of the projection in world units.
FixedHorizontal(f32),
}
Expand Down

0 comments on commit bcf25d6

Please sign in to comment.