From a40b21060da802cfa205dabd0367d3e6b2b65ff3 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 13:19:56 -0500 Subject: [PATCH] spelling: concatenating Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/fw/applib/graphics/gtransform.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fw/applib/graphics/gtransform.h b/src/fw/applib/graphics/gtransform.h index 47e23936..43e04e5b 100644 --- a/src/fw/applib/graphics/gtransform.h +++ b/src/fw/applib/graphics/gtransform.h @@ -171,7 +171,7 @@ bool gtransform_is_equal(const GTransform * const t1, const GTransform * const t ////////////////////////////////////// //! Concatenates two transformation matrices and returns the resulting matrix in t1 //! The operation performed is t_new = t1*t2. This order is not commutative so be careful -//! when contactenating the matrices. +//! when concatenating the matrices. //! Note t_new can safely be be the same pointer as t1 or t2. //! @param t_new Pointer to destination transformation matrix //! @param t1 Pointer to transformation matrix to concatenate with t2 where t_new = t1*t2