From 2958142e315c912fcf9fa6c0d42e9fd8d0f3a2df Mon Sep 17 00:00:00 2001 From: Qingnan Duan Date: Mon, 18 Apr 2022 14:18:27 +0800 Subject: [PATCH] Remove extra not in doc --- 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 919fa0b6f9..54eee9bfa8 100644 --- a/modules/core/include/opencv2/core/mat.hpp +++ b/modules/core/include/opencv2/core/mat.hpp @@ -1030,7 +1030,7 @@ public: @param copyData Flag to specify whether the underlying data of the STL vector should be copied to (true) or shared with (false) the newly constructed matrix. When the data is copied, the allocated buffer is managed using Mat reference counting mechanism. While the data is shared, - the reference counter is NULL, and you should not deallocate the data until the matrix is not + the reference counter is NULL, and you should not deallocate the data until the matrix is destructed. */ template explicit Mat(const std::vector<_Tp>& vec, bool copyData=false);