From ce3a4e89d4fae6ad82e610a53ceaacfa59a785d9 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Wed, 18 Jan 2023 08:34:46 -0500 Subject: [PATCH] spelling: inaccurate Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- includes/glm/gtc/matrix_inverse.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/glm/gtc/matrix_inverse.hpp b/includes/glm/gtc/matrix_inverse.hpp index a1900ad..9fc0225 100644 --- a/includes/glm/gtc/matrix_inverse.hpp +++ b/includes/glm/gtc/matrix_inverse.hpp @@ -31,7 +31,7 @@ namespace glm /// Fast matrix inverse for affine matrix. /// /// @param m Input matrix to invert. - /// @tparam genType Squared floating-point matrix: half, float or double. Inverse of matrix based of half-qualifier floating point value is highly innacurate. + /// @tparam genType Squared floating-point matrix: half, float or double. Inverse of matrix based of half-qualifier floating point value is highly inaccurate. /// @see gtc_matrix_inverse template GLM_FUNC_DECL genType affineInverse(genType const& m); @@ -39,7 +39,7 @@ namespace glm /// Compute the inverse transpose of a matrix. /// /// @param m Input matrix to invert transpose. - /// @tparam genType Squared floating-point matrix: half, float or double. Inverse of matrix based of half-qualifier floating point value is highly innacurate. + /// @tparam genType Squared floating-point matrix: half, float or double. Inverse of matrix based of half-qualifier floating point value is highly inaccurate. /// @see gtc_matrix_inverse template GLM_FUNC_DECL genType inverseTranspose(genType const& m);