Index: src/java/org/apache/lucene/analysis/package.html =================================================================== --- src/java/org/apache/lucene/analysis/package.html (revision 696706) +++ src/java/org/apache/lucene/analysis/package.html (working copy) @@ -93,7 +93,7 @@ {@link org.apache.lucene.document.Field}s.
  • The contrib/analyzers library located at the root of the Lucene distribution has a number of different Analyzer implementations to solve a variety of different problems related to searching. Many of the Analyzers are designed to analyze non-English languages.
  • -
  • The {@link org.apache.lucene.analysis.snowball contrib/snowball library} +
  • The contrib/snowball library located at the root of the Lucene distribution has Analyzer and TokenFilter implementations for a variety of Snowball stemmers. See http://snowball.tartarus.org Index: src/java/org/apache/lucene/search/ConstantScoreQuery.java =================================================================== --- src/java/org/apache/lucene/search/ConstantScoreQuery.java (revision 696706) +++ src/java/org/apache/lucene/search/ConstantScoreQuery.java (working copy) @@ -20,7 +20,6 @@ import org.apache.lucene.index.IndexReader; import java.io.IOException; -import java.util.BitSet; import java.util.Set; /** Index: src/java/org/apache/lucene/search/payloads/PayloadSpanUtil.java =================================================================== --- src/java/org/apache/lucene/search/payloads/PayloadSpanUtil.java (revision 696706) +++ src/java/org/apache/lucene/search/payloads/PayloadSpanUtil.java (working copy) @@ -66,7 +66,7 @@ * Query should be rewritten for wild/fuzzy support. * * @param query - * @return + * @return payloads Collection * @throws IOException */ public Collection getPayloadsForQuery(Query query) throws IOException { Index: src/java/org/apache/lucene/search/TopDocCollector.java =================================================================== --- src/java/org/apache/lucene/search/TopDocCollector.java (revision 696706) +++ src/java/org/apache/lucene/search/TopDocCollector.java (working copy) @@ -52,7 +52,7 @@ } /** Constructor to collect the top-scoring documents by using the given PQ. - * @hq the PQ to use by this instance. + * @param hq the PQ to use by this instance. */ protected TopDocCollector(PriorityQueue hq) { this.hq = hq; Index: src/java/org/apache/lucene/util/OpenBitSet.java =================================================================== --- src/java/org/apache/lucene/util/OpenBitSet.java (revision 696706) +++ src/java/org/apache/lucene/util/OpenBitSet.java (working copy) @@ -26,7 +26,7 @@ /** An "open" BitSet implementation that allows direct access to the array of words * storing the bits. *

    - * Unlike java.util.bitet, the fact that bits are packed into an array of longs + * Unlike java.util.bitset, the fact that bits are packed into an array of longs * is part of the interface. This allows efficient implementation of other algorithms * by someone other than the author. It also allows one to efficiently implement * alternate serialization or interchange formats. Index: src/java/org/apache/lucene/document/Document.java =================================================================== --- src/java/org/apache/lucene/document/Document.java (revision 696706) +++ src/java/org/apache/lucene/document/Document.java (working copy) @@ -188,8 +188,9 @@ /** Returns a List of all the fields in a document. *

    Note that fields which are not {@link Fieldable#isStored() stored} are - * not available in documents retrieved from the index, e.g. with {@link - * Hits#doc(int)}, {@link Searcher#doc(int)} or {@link IndexReader#document(int)}. + * not available in documents retrieved from the + * index, e.g. {@link Searcher#doc(int)} or {@link + * IndexReader#document(int)}. */ public final List getFields() { return fields;