Skip to content

Commit

Permalink
Fix typo in game_menu.rs (bevyengine#4977)
Browse files Browse the repository at this point in the history
Should be trivial

# Objective

There is a typo in a comment that is fixed in this commit

## Solution

Fix the typo
`positionned` -> `positioned`

---
  • Loading branch information
Piturnah committed Jun 9, 2022
1 parent c6958b3 commit 1679a99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/games/game_menu.rs
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ mod menu {
};
let button_icon_style = Style {
size: Size::new(Val::Px(30.0), Val::Auto),
// This takes the icons out of the flexbox flow, to be positionned exactly
// This takes the icons out of the flexbox flow, to be positioned exactly
position_type: PositionType::Absolute,
// The icon will be close to the left border of the button
position: UiRect {
Expand Down

0 comments on commit 1679a99

Please sign in to comment.