Merge pull request #10208 from thatSteveFan/patch-1

Minor comment fix in Matrix.cpp
This commit is contained in:
JosJuice 2021-11-13 15:09:28 +01:00 committed by GitHub
commit 3e84279919
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@
namespace
{
// Multiply a NxM matrix by a NxP matrix.
// Multiply a NxM matrix by a MxP matrix.
template <int N, int M, int P, typename T>
auto MatrixMultiply(const std::array<T, N * M>& a, const std::array<T, M * P>& b)
-> std::array<T, N * P>