From 65efdcd686310d026ad33636c235480d8c837ef8 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 18:58:57 -0500 Subject: [PATCH] spelling: multiplication Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/fw/applib/graphics/gtransform.c | 2 +- tests/libutil/test_math_fixed.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fw/applib/graphics/gtransform.c b/src/fw/applib/graphics/gtransform.c index d1506171..cdde4fc3 100644 --- a/src/fw/applib/graphics/gtransform.c +++ b/src/fw/applib/graphics/gtransform.c @@ -114,7 +114,7 @@ bool gtransform_is_equal(const GTransform * const t1, const GTransform * const t ////////////////////////////////////// /// Modifying Transforms ////////////////////////////////////// -// Note that t_new can be set to either of t1 or t2 safely to do in place muliplication +// Note that t_new can be set to either of t1 or t2 safely to do in place multiplication // Note this operation is not commutative. The operation is as follows t_new = t1 * t2 void gtransform_concat(GTransform *t_new, const GTransform *t1, const GTransform * t2) { if ((!t_new) || (!t1) || (!t2)) { diff --git a/tests/libutil/test_math_fixed.c b/tests/libutil/test_math_fixed.c index c84bf092..eaac0be1 100644 --- a/tests/libutil/test_math_fixed.c +++ b/tests/libutil/test_math_fixed.c @@ -444,7 +444,7 @@ void test_math_fixed__S32_16_mul(void) { Fixed_S32_16 num1, num2; Fixed_S32_16 mul, mul_c; - // Test number muliplication + // Test number multiplication num1 = FIXED_S32_16_ONE; num2 = FIXED_S32_16_ONE; mul = Fixed_S32_16_mul(num1, num2);