1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-09 12:50:35 +00:00

Fix typos with codespell

Using codespell 2.2-dev from current git.

Added `misc/scripts/codespell.sh` to make it easier to run it once in a
while and update the skip and ignore lists.

(cherry picked from commit 1bdb82c64e)
This commit is contained in:
Rémi Verschelde
2022-02-10 12:00:11 +01:00
parent 1865f06bef
commit 7a16bb2ee4
41 changed files with 70 additions and 65 deletions

View File

@@ -198,7 +198,7 @@ ObjectPtr LazyObject::LoadObject() {
object.reset(new ModelLimbNode(id, element, doc, name));
} else if (strcmp(classtag.c_str(), "IKEffector") && strcmp(classtag.c_str(), "FKEffector")) {
// FK and IK effectors are not supporte
// FK and IK effectors are not supported
object.reset(new Model(id, element, doc, name));
}
} else if (!strncmp(obtype, "Material", length)) {