diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-02-10 12:00:11 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-02-10 12:30:19 +0100 |
commit | 1bdb82c64e65f23381183051ef1fc9856a7830f8 (patch) | |
tree | 82f8a101fb4461d29bc9dd1e2bc147bb99c706f6 /tests | |
parent | f21a62b62027a88ea90de539a48df8e280a820e8 (diff) |
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.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/core/math/test_vector3.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/core/math/test_vector3.h b/tests/core/math/test_vector3.h index 136a531946..847a7c0b3f 100644 --- a/tests/core/math/test_vector3.h +++ b/tests/core/math/test_vector3.h @@ -58,7 +58,7 @@ TEST_CASE("[Vector3] Angle methods") { CHECK_MESSAGE( Math::is_equal_approx(vector_x.signed_angle_to(vector_y, vector_y), (real_t)Math_TAU / 4), - "Vector3 signed_angle_to edge case should be postiive."); + "Vector3 signed_angle_to edge case should be positive."); CHECK_MESSAGE( Math::is_equal_approx(vector_x.signed_angle_to(vector_yz, vector_y), (real_t)Math_TAU / -4), "Vector3 signed_angle_to should work as expected."); |