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:
Joona Aalto 2024-12-06 19:09:10 +02:00 committed by GitHub
parent a6adced9ed
commit 4d6b02af89
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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,