mirror of
https://github.com/bevyengine/bevy
synced 2024-12-18 17:13:10 +00:00
Fix mehses -> meshes typo (#16688)
# Objective The "mehses" typo introduced in a review comment [here](https://github.com/bevyengine/bevy/pull/16657#discussion_r1870834999) hurts my soul, it was merged right as I was about to comment about it :( ## Solution Fix it :D (also, why didn't the CI typo checker catch this?)
This commit is contained in:
parent
a6adced9ed
commit
4d6b02af89
1 changed files with 1 additions and 1 deletions
|
@ -274,7 +274,7 @@ impl<'w, 's> MeshRayCast<'w, 's> {
|
|||
return;
|
||||
};
|
||||
|
||||
// Backfaces of 2d meshes are never culled, unlike 3d mehses.
|
||||
// Backfaces of 2d meshes are never culled, unlike 3d meshes.
|
||||
let backfaces = match (has_backfaces, mesh2d.is_some()) {
|
||||
(false, false) => Backfaces::Cull,
|
||||
_ => Backfaces::Include,
|
||||
|
|
Loading…
Reference in a new issue