- Javadocs fixes

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@657280 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Otis Gospodnetic 2008-05-17 01:56:46 +00:00
parent d5c708a161
commit 1d5ba345cc
1 changed files with 4 additions and 4 deletions

View File

@ -26,11 +26,11 @@ import org.apache.lucene.analysis.TokenStream;
import org.apache.lucene.analysis.Token; import org.apache.lucene.analysis.Token;
/** /**
* <p>A ShingleFilter constructs shingles (token n-grams) from a token stream, * <p>A ShingleFilter constructs shingles (token n-grams) from a token stream.
* that is, combinations of tokens that are indexed as one token. * In other words, it creates combinations of tokens as a single token.
* *
* <p>For example, the sentence "please divide this sentence into shingles" * <p>For example, the sentence "please divide this sentence into shingles"
* would be tokenized into the tokens "please divide", "divide this", * might be tokenized into shingles "please divide", "divide this",
* "this sentence", "sentence into", and "into shingles". * "this sentence", "sentence into", and "into shingles".
* *
* <p>This filter handles position increments > 1 by inserting filler tokens * <p>This filter handles position increments > 1 by inserting filler tokens
@ -72,7 +72,7 @@ public class ShingleFilter extends TokenFilter {
private int maxShingleSize; private int maxShingleSize;
/** /**
* Construct a ShingleFilter with the specified single size from the * Constructs a ShingleFilter with the specified single size from the
* TokenStream <code>input</code> * TokenStream <code>input</code>
* *
* @param input input stream * @param input input stream