diff options
author | Abdou-31 <abdou31.coding@gmail.com> | 2022-11-09 17:57:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-09 11:57:19 -0500 |
commit | d1b80b462eaa74a8640cf132c21f74e4f924052a (patch) | |
tree | d5804214487f339643ab6cdf74fbd113cb02cb2b /src/raycast.cpp | |
parent | 6191bafcadc21277be5527ed1ac05f7902e710ad (diff) | |
download | minetest-d1b80b462eaa74a8640cf132c21f74e4f924052a.tar.xz |
Fix typos and en_US/en_GB inconsistency in various files (#12902)
Diffstat (limited to 'src/raycast.cpp')
-rw-r--r-- | src/raycast.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/raycast.cpp b/src/raycast.cpp index ead024dd1..c41b9c394 100644 --- a/src/raycast.cpp +++ b/src/raycast.cpp @@ -26,7 +26,7 @@ with this program; if not, write to the Free Software Foundation, Inc., bool RaycastSort::operator() (const PointedThing &pt1, const PointedThing &pt2) const { - // "nothing" can not be sorted + // "nothing" cannot be sorted assert(pt1.type != POINTEDTHING_NOTHING); assert(pt2.type != POINTEDTHING_NOTHING); f32 pt1_distSq = pt1.distanceSq; |