Skip to content
Permalink
Browse files
Merge pull request #10208 from thatSteveFan/patch-1
Minor comment fix in Matrix.cpp
  • Loading branch information
JosJuice committed Nov 13, 2021
2 parents c55721c + 834a59d commit 3e84279
Showing 1 changed file with 1 addition and 1 deletion.
@@ -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>

0 comments on commit 3e84279

Please sign in to comment.