Re-editing Documentation
authorTobyWanKenobi <asragoth@gmail.com>
Wed, 3 Dec 2014 14:54:25 +0000 (15:54 +0100)
committerTobyWanKenobi <asragoth@gmail.com>
Wed, 3 Dec 2014 14:54:25 +0000 (15:54 +0100)
Attempting to re-editing the documentation, to satisfy buildbot error
status.

modules/ml/include/opencv2/ml.hpp

index 598c5b1..0607762 100644 (file)
@@ -828,12 +828,11 @@ public:
     }
 
     /** @brief Loads model from an XML String
+    
+    @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): :
-
+    This is static template method of StatModel. It's usage is following (in the case of SVM):
         Ptr<SVM> svm = StatModel::loadFromString<SVM>(myXMLStringModel);
-
-    @param strModel The string variable containing the model (in an XML format) you want to load.
      */
     template<typename _Tp> static Ptr<_Tp> loadFromString(const String& strModel)
     {