From 38ef8894b7f5e85217faa6e44cf7d10fc4bc7020 Mon Sep 17 00:00:00 2001
From: yash <yashdv@gmail.com>
Date: Tue, 18 Feb 2014 10:51:05 +0530
Subject: [PATCH] Made a sentence in the doc for Mat::copyTo more clearer

---
 modules/core/doc/basic_structures.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/core/doc/basic_structures.rst b/modules/core/doc/basic_structures.rst
index 6f9c10e1d..d23da8de1 100644
--- a/modules/core/doc/basic_structures.rst
+++ b/modules/core/doc/basic_structures.rst
@@ -1355,7 +1355,7 @@ The method copies the matrix data to another matrix. Before copying the data, th
 
 so that the destination matrix is reallocated if needed. While ``m.copyTo(m);`` works flawlessly, the function does not handle the case of a partial overlap between the source and the destination matrices.
 
-When the operation mask is specified, and the ``Mat::create`` call shown above reallocated the matrix, the newly allocated matrix is initialized with all zeros before copying the data.
+When the operation mask is specified and the ``Mat::create`` call shown above is invoked to reallocate the matrix, the newly allocated matrix is initialized with all zeros before copying the data.
 
 .. _Mat::convertTo: