diff --git a/modules/core/include/opencv2/core/matx.hpp b/modules/core/include/opencv2/core/matx.hpp index d67168518f..c5e769f0ab 100644 --- a/modules/core/include/opencv2/core/matx.hpp +++ b/modules/core/include/opencv2/core/matx.hpp @@ -765,7 +765,7 @@ inline Matx<_Tp, m, n>::operator Matx() const template template inline Matx<_Tp, m1, n1> Matx<_Tp, m, n>::reshape() const { - CV_StaticAssert(m1*n1 == m*n, "Input and destnarion matrices must have the same number of elements"); + CV_StaticAssert(m1*n1 == m*n, "Input and destination matrices must have the same number of elements"); return (const Matx<_Tp, m1, n1>&)*this; }