From: Ilya Lysenkov Date: Mon, 9 Apr 2012 13:37:44 +0000 (+0000) Subject: Documented a return value in cvOpenFileStorage (issue #215) X-Git-Tag: accepted/tizen/6.0/unified/20201030.111113~1314^2~2200 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=75ad9b98672afbbf59e9909b799184afb0dc0ba9;p=platform%2Fupstream%2Fopencv.git Documented a return value in cvOpenFileStorage (issue #215) --- diff --git a/modules/core/doc/old_xml_yaml_persistence.rst b/modules/core/doc/old_xml_yaml_persistence.rst index d5eeb91..1bfd17e 100644 --- a/modules/core/doc/old_xml_yaml_persistence.rst +++ b/modules/core/doc/old_xml_yaml_persistence.rst @@ -356,7 +356,7 @@ Opens file storage for reading or writing data. * **CV_STORAGE_WRITE** the storage is open for writing -The function opens file storage for reading or writing data. In the latter case, a new file is created or an existing file is rewritten. The type of the read or written file is determined by the filename extension: ``.xml`` for ``XML`` and ``.yml`` or ``.yaml`` for ``YAML``. The function returns a pointer to the :ocv:struct:`CvFileStorage` structure. +The function opens file storage for reading or writing data. In the latter case, a new file is created or an existing file is rewritten. The type of the read or written file is determined by the filename extension: ``.xml`` for ``XML`` and ``.yml`` or ``.yaml`` for ``YAML``. The function returns a pointer to the :ocv:struct:`CvFileStorage` structure. If the file cannot be opened then the function returns ``NULL``. Read ----