spelling correction in docs

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@898303 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Noble Paul 2010-01-12 12:22:02 +00:00
parent 8ca932ea0b
commit fe8a6bf53f
1 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ import java.util.Collections;
/** /**
* Each Entity may have only a single EntityProcessor . But the same entity can be run by * Each Entity may have only a single EntityProcessor . But the same entity can be run by
* multiple EntityProcessorWrapper (1 per thread) . thhis helps running transformations in multiple threads * multiple EntityProcessorWrapper (1 per thread) . this helps running transformations in multiple threads
* @since Solr 1.5 * @since Solr 1.5
*/ */
@ -86,7 +86,7 @@ public class ThreadedEntityProcessorWrapper extends EntityProcessorWrapper {
if (ABORT.equals(onError)) { if (ABORT.equals(onError)) {
wrapAndThrow(SEVERE, e); wrapAndThrow(SEVERE, e);
} else { } else {
//SKIP is not really possible. If this calls the nextRow() again the Entityprocessor would be in an inconisttent state //SKIP is not really possible. If this calls the nextRow() again the Entityprocessor would be in an inconistent state
LOG.error("Exception in entity : " + entityName, e); LOG.error("Exception in entity : " + entityName, e);
return null; return null;
} }