You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@opennlp.apache.org by jo...@apache.org on 2011/11/01 01:39:08 UTC

svn commit: r1195734 - /incubator/opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/cmdline/postag/TrainingParams.java

Author: joern
Date: Tue Nov  1 00:39:08 2011
New Revision: 1195734

URL: http://svn.apache.org/viewvc?rev=1195734&view=rev
Log:
OPENNLP-342 Fixed tag dictionary description.

Modified:
    incubator/opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/cmdline/postag/TrainingParams.java

Modified: incubator/opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/cmdline/postag/TrainingParams.java
URL: http://svn.apache.org/viewvc/incubator/opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/cmdline/postag/TrainingParams.java?rev=1195734&r1=1195733&r2=1195734&view=diff
==============================================================================
--- incubator/opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/cmdline/postag/TrainingParams.java (original)
+++ incubator/opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/cmdline/postag/TrainingParams.java Tue Nov  1 00:39:08 2011
@@ -34,7 +34,7 @@ interface TrainingParams extends BasicTr
   @OptionalParameter(defaultValue = "maxent")
   String getType();
   
-  @ParameterDescription(valueName = "dictionaryPath", description = "The feature generator descriptor file")
+  @ParameterDescription(valueName = "dictionaryPath", description = "The XML tag dictionary file")
   @OptionalParameter
   File getDict();