Skip to content

Commit

Permalink
Fix mehses -> meshes typo (#16688)
Browse files Browse the repository at this point in the history
# Objective

The "mehses" typo introduced in a review comment
[here](#16657 (comment))
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?)
  • Loading branch information
Jondolf authored Dec 6, 2024
1 parent a6adced commit 4d6b02a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bevy_picking/src/mesh_picking/ray_cast/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 4d6b02a

Please sign in to comment.