From 3223f9ea240a44f7471bd99ebfa37d6b2bf32a1e Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Fri, 23 May 2025 18:49:53 +0200 Subject: [PATCH] Rename declaration typo (mat3_det2 -> mat3_det) --- linalg/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linalg/main.c b/linalg/main.c index 1d315c5..a06c9be 100644 --- a/linalg/main.c +++ b/linalg/main.c @@ -140,7 +140,7 @@ float mat2_det(const Mat2 *m); * @param m Pointer to the matrix. * @return The determinant of the matrix. */ -float mat3_det2(const Mat3 *m); +float mat3_det(const Mat3 *m); /** * @brief Multiplies two 2x2 matrices (row-major order).