improve doc for default constructor, no functional change

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150615 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Daniel Naber 2004-10-17 11:19:39 +00:00
parent 3a84008a63
commit 8aaf570ed6
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ public class StandardAnalyzer extends Analyzer {
useful for searching. */
public static final String[] STOP_WORDS = StopAnalyzer.ENGLISH_STOP_WORDS;
/** Builds an analyzer. */
/** Builds an analyzer with the default stop words ({@link #STOP_WORDS}). */
public StandardAnalyzer() {
this(STOP_WORDS);
}