oops, missed this nocommit too

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/branches/branch_3x@1169476 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/hunspell/HunspellDictionary.java b/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/hunspell/HunspellDictionary.java
index b49e66d..6787122 100644
--- a/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/hunspell/HunspellDictionary.java
+++ b/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/hunspell/HunspellDictionary.java
@@ -287,7 +287,7 @@
     String line = reader.readLine(); // first line is number of entries
     int numEntries = Integer.parseInt(line);
     
-    // nocommit, the flags themselves can be double-chars (long) or also numeric
+    // TODO: the flags themselves can be double-chars (long) or also numeric
     // either way the trick is to encode them as char... but they must be parsed differently
     while ((line = reader.readLine()) != null) {
       String entry;