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