You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@opennlp.apache.org by jk...@apache.org on 2014/03/22 04:18:57 UTC

svn commit: r1580137 - /opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/ml/model/AbstractModel.java

Author: jkosin
Date: Sat Mar 22 03:18:57 2014
New Revision: 1580137

URL: http://svn.apache.org/r1580137
Log:
OPENNLP-669 Lists tags <li> need to be enclosed with <ul> </ul> tags to generate the lists.

Modified:
    opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/ml/model/AbstractModel.java

Modified: opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/ml/model/AbstractModel.java
URL: http://svn.apache.org/viewvc/opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/ml/model/AbstractModel.java?rev=1580137&r1=1580136&r2=1580137&view=diff
==============================================================================
--- opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/ml/model/AbstractModel.java (original)
+++ opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/ml/model/AbstractModel.java Sat Mar 22 03:18:57 2014
@@ -140,7 +140,7 @@ public abstract class AbstractModel impl
    * information.  This method will usually only be needed by
    * GISModelWriters.  The following values are held in the Object array
    * which is returned by this method:
-   *
+   * <ul>
    * <li>index 0: opennlp.tools.ml.maxent.Context[] containing the model
    *            parameters  
    * <li>index 1: java.util.Map containing the mapping of model predicates
@@ -152,7 +152,8 @@ public abstract class AbstractModel impl
    *            correction constant
    * <li>index 4: java.lang.Double containing the value of the models
    *            correction parameter
-   *
+   * </ul>
+   * 
    * @return An Object[] with the values as described above.
    */
   public final Object[] getDataStructures() {