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/05/24 15:34:50 UTC

svn commit: r1127038 - /incubator/opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/dictionary/Index.java

Author: joern
Date: Tue May 24 13:34:50 2011
New Revision: 1127038

URL: http://svn.apache.org/viewvc?rev=1127038&view=rev
Log:
OPENNLP-21 Fixed javadoc warnings

Modified:
    incubator/opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/dictionary/Index.java

Modified: incubator/opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/dictionary/Index.java
URL: http://svn.apache.org/viewvc/incubator/opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/dictionary/Index.java?rev=1127038&r1=1127037&r2=1127038&view=diff
==============================================================================
--- incubator/opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/dictionary/Index.java (original)
+++ incubator/opennlp/trunk/opennlp-tools/src/main/java/opennlp/tools/dictionary/Index.java Tue May 24 13:34:50 2011
@@ -25,7 +25,7 @@ import opennlp.tools.util.StringList;
 
 /**
  * This classes indexes {@link StringList}s. This makes it possible
- * to check if a certain {@link Token} is contained in at least one of the
+ * to check if a certain token is contained in at least one of the
  * {@link StringList}s.
  */
 public class Index {
@@ -52,11 +52,11 @@ public class Index {
 
   /**
    * Checks if at leat one {@link StringList} contains the
-   * given {@link Token}.
+   * given token.
    *
    * @param token
    *
-   * @return true if the {@link Token} is contained otherwise false.
+   * @return true if the token is contained otherwise false.
    */
   public boolean contains(String token) {
     return tokens.contains(token);