From b3bba3476da599ec2ec69bb1846eb268e8d20971 Mon Sep 17 00:00:00 2001 From: TobyWanKenobi Date: Wed, 3 Dec 2014 15:54:25 +0100 Subject: [PATCH] Re-editing Documentation Attempting to re-editing the documentation, to satisfy buildbot error status. --- modules/ml/include/opencv2/ml.hpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/modules/ml/include/opencv2/ml.hpp b/modules/ml/include/opencv2/ml.hpp index 598c5b1b1..060776224 100644 --- a/modules/ml/include/opencv2/ml.hpp +++ b/modules/ml/include/opencv2/ml.hpp @@ -828,12 +828,11 @@ public: } /** @brief Loads model from an XML String - - This is static template method of StatModel. It's usage is following (in the case of SVM): : - - Ptr svm = StatModel::loadFromString(myXMLStringModel); - + @param strModel The string variable containing the model (in an XML format) you want to load. + + This is static template method of StatModel. It's usage is following (in the case of SVM): + Ptr svm = StatModel::loadFromString(myXMLStringModel); */ template static Ptr<_Tp> loadFromString(const String& strModel) {