From 834a59d89b3d6c54015b1b661f8f69243cf06b3f Mon Sep 17 00:00:00 2001 From: thatSteveFan Date: Mon, 8 Nov 2021 15:30:39 -0800 Subject: [PATCH] Minor comment fix in Matrix.cpp Fix comment to say (NxM times MxP). --- Source/Core/Common/Matrix.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Common/Matrix.cpp b/Source/Core/Common/Matrix.cpp index f53bff0efb..8e4d504398 100644 --- a/Source/Core/Common/Matrix.cpp +++ b/Source/Core/Common/Matrix.cpp @@ -10,7 +10,7 @@ namespace { -// Multiply a NxM matrix by a NxP matrix. +// Multiply a NxM matrix by a MxP matrix. template auto MatrixMultiply(const std::array& a, const std::array& b) -> std::array