diff --git a/solr/core/src/java/org/apache/solr/handler/DocumentAnalysisRequestHandler.java b/solr/core/src/java/org/apache/solr/handler/DocumentAnalysisRequestHandler.java index b84ce702e62..5fc8a4d340b 100644 --- a/solr/core/src/java/org/apache/solr/handler/DocumentAnalysisRequestHandler.java +++ b/solr/core/src/java/org/apache/solr/handler/DocumentAnalysisRequestHandler.java @@ -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: *

*


@@ -65,12 +65,12 @@ import java.util.*;
  * 
*

* 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. + * response to associate an analysis breakdown to the analyzed document. *

*

*

* 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". *