diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-01-07 00:08:56 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-01-07 00:12:09 +0100 |
commit | a01b18a4761a5a8d29e83c9192bda172aa3ab141 (patch) | |
tree | 6ec4a58f69082f37119a09b94329d05f00b6c362 /core/math | |
parent | 9e9726213251b42283994e231919458ddcf1c982 (diff) |
Fix typos with codespell
Using codespell 2.1.0.
Method:
```
$ cat > ../godot-word-whitelist.txt << EOF
ang
ans
ba
curvelinear
dof
doubleclick
fave
findn
gird
inout
leapyear
lod
merchantibility
nd
numer
ois
ony
que
readded
seeked
statics
Diffstat (limited to 'core/math')
-rw-r--r-- | core/math/octree.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/math/octree.h b/core/math/octree.h index 7861c35e07..23ba4c1aa3 100644 --- a/core/math/octree.h +++ b/core/math/octree.h @@ -103,7 +103,7 @@ private: Octant *parent = nullptr; Octant *children[8] = { nullptr }; - int children_count = 0; // cache for amount of childrens (fast check for removal) + int children_count = 0; // cache for amount of children (fast check for removal) int parent_index = -1; // cache for parent index (fast check for removal) List<Element *, AL> pairable_elements; |