Fixed a few typos in the javadocs

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1592572 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Shalin Shekhar Mangar 2014-05-05 17:04:15 +00:00
parent 530a741b9a
commit 88846a958d
1 changed files with 3 additions and 3 deletions

View File

@ -48,7 +48,7 @@ import java.io.InputStream;
import java.util.*;
/**
* An analysis handler that provides a breakdown of the analysis process of provided docuemnts. This handler expects a
* An analysis handler that provides a breakdown of the analysis process of provided documents. This handler expects a
* (single) content stream of the following format:
* <p/>
* <pre><code>
@ -65,12 +65,12 @@ import java.util.*;
* </code></pre>
* <p/>
* <em><b>Note: Each document must contain a field which serves as the unique key. This key is used in the returned
* response to assoicate an analysis breakdown to the analyzed document.</b></em>
* response to associate an analysis breakdown to the analyzed document.</b></em>
* <p/>
* <p/>
* <p/>
* Like the {@link org.apache.solr.handler.FieldAnalysisRequestHandler}, this handler also supports query analysis by
* sending either an "analysis.query" or "q" request paraemter that holds the query text to be analyzed. It also
* sending either an "analysis.query" or "q" request parameter that holds the query text to be analyzed. It also
* supports the "analysis.showmatch" parameter which when set to {@code true}, all field tokens that match the query
* tokens will be marked as a "match".
*