summaryrefslogtreecommitdiff
path: root/modules/bullet
diff options
context:
space:
mode:
authorluz.paz <luzpaz@users.noreply.github.com>2018-09-12 21:38:39 -0400
committerluz.paz <luzpaz@users.noreply.github.com>2018-09-12 21:39:17 -0400
commit08bde5b2dea65ef3f80af5de4f4caf0e76982b64 (patch)
treef4b5e8b60aa121d9ced1274b43a6ffac240f6790 /modules/bullet
parent0d04fb76e1d4543d04d6e41244c06f35bfecb07c (diff)
Misc. typos
Found via `codespell -q 3 -I ../godot-word-whitelist.txt --skip="./thirdparty,*.po"`
Diffstat (limited to 'modules/bullet')
-rw-r--r--modules/bullet/rigid_body_bullet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/bullet/rigid_body_bullet.cpp b/modules/bullet/rigid_body_bullet.cpp
index 2d0e74eb6f..f81cfe84fb 100644
--- a/modules/bullet/rigid_body_bullet.cpp
+++ b/modules/bullet/rigid_body_bullet.cpp
@@ -849,7 +849,7 @@ void RigidBodyBullet::on_exit_area(AreaBullet *p_area) {
bool wasTheAreaFound = false;
for (int i = 0; i < areaWhereIamCount; ++i) {
if (p_area == areasWhereIam[i]) {
- // The area was fount, just shift down all elements
+ // The area was found, just shift down all elements
for (int j = i; j < areaWhereIamCount; ++j) {
areasWhereIam.write[j] = areasWhereIam[j + 1];
}