From 60bcb16ca86454cb1b3308274931a9c414aa7b4a Mon Sep 17 00:00:00 2001 From: Sayan Sinha Date: Sat, 14 Oct 2017 21:46:11 +0530 Subject: [PATCH] Fix typo in mat.hpp --- modules/core/include/opencv2/core/mat.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/core/include/opencv2/core/mat.hpp b/modules/core/include/opencv2/core/mat.hpp index e973593472..9fdc5a9929 100644 --- a/modules/core/include/opencv2/core/mat.hpp +++ b/modules/core/include/opencv2/core/mat.hpp @@ -2418,7 +2418,7 @@ public: void copyTo( OutputArray m ) const; //! copies those matrix elements to "m" that are marked with non-zero mask elements. void copyTo( OutputArray m, InputArray mask ) const; - //! converts matrix to another datatype with optional scalng. See cvConvertScale. + //! converts matrix to another datatype with optional scaling. See cvConvertScale. void convertTo( OutputArray m, int rtype, double alpha=1, double beta=0 ) const; void assignTo( UMat& m, int type=-1 ) const;