From 6e995eb40e5a825ddcd4037ccc73b043ed73fe26 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Fri, 18 Dec 2020 06:21:49 +1100 Subject: [PATCH] docs: fix simple typo, multiplcation -> multiplication There is a small typo in src/matrix.h. Should read `multiplication` rather than `multiplcation`. --- src/matrix.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/matrix.h b/src/matrix.h index 1765479..da01287 100644 --- a/src/matrix.h +++ b/src/matrix.h @@ -86,7 +86,7 @@ static Matrix* multiply(Matrix* A, Matrix* B); // multiplies $A and $B (ordering: AB) and places values into $into static void multiplyInto(Matrix* A, Matrix* B, Matrix* into); -// element-wise multiplcation +// element-wise multiplication static Matrix* hadamard(Matrix* A, Matrix* B); // places values of hadamard product of $A and $B into $into @@ -390,4 +390,4 @@ void destroyMatrix(Matrix* matrix){ free(matrix); } -#endif \ No newline at end of file +#endif