diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-01-23 11:08:55 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-01-23 11:08:55 +0100 |
commit | 1891d9fdf109920b4bfa73001e6c17cf512f1900 (patch) | |
tree | 97480eaec0d058b25a034f16795a6d11f1f646da /scene/resources/polygon_path_finder.cpp | |
parent | 37205964b61c4b6d23379a585591009cbddfa6f3 (diff) | |
parent | 5b1df48c6c62e2ddc6492d4c210b3281f87b4031 (diff) |
Merge pull request #71801 from akien-mga/codespell-en-GB-to-en-US
Convert en_GB spelling to en_US with codespell
Diffstat (limited to 'scene/resources/polygon_path_finder.cpp')
-rw-r--r-- | scene/resources/polygon_path_finder.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scene/resources/polygon_path_finder.cpp b/scene/resources/polygon_path_finder.cpp index 85106883f9..3bbd0a0b5e 100644 --- a/scene/resources/polygon_path_finder.cpp +++ b/scene/resources/polygon_path_finder.cpp @@ -325,7 +325,7 @@ Vector<Vector2> PolygonPathFinder::find_path(const Vector2 &p_from, const Vector } const Point &np = points[least_cost_point]; - //open the neighbours for search + //open the neighbors for search for (const int &E : np.connections) { Point &p = points.write[E]; @@ -339,7 +339,7 @@ Vector<Vector2> PolygonPathFinder::find_path(const Vector2 &p_from, const Vector p.distance = distance; } } else { - //add to open neighbours + //add to open neighbors p.prev = least_cost_point; p.distance = distance; |