Author: noble
Date: Tue Jan 12 12:22:02 2010
New Revision: 898303
URL: http://svn.apache.org/viewvc?rev=898303&view=rev
Log:
spelling correction in docs
Modified:
lucene/solr/trunk/contrib/dataimporthandler/src/main/java/org/apache/solr/handler/dataimport/ThreadedEntityProcessorWrapper.java
Modified:
lucene/solr/trunk/contrib/dataimporthandler/src/main/java/org/apache/solr/handler/dataimport/ThreadedEntityProcessorWrapper.java
URL:
http://svn.apache.org/viewvc/lucene/solr/trunk/contrib/dataimporthandler/src/main/java/org/apache/solr/handler/dataimport/ThreadedEntityProcessorWrapper.java?rev=898303&r1=898302&r2=898303&view=diff
==============================================================================
---
lucene/solr/trunk/contrib/dataimporthandler/src/main/java/org/apache/solr/handler/dataimport/ThreadedEntityProcessorWrapper.java
(original)
+++
lucene/solr/trunk/contrib/dataimporthandler/src/main/java/org/apache/solr/handler/dataimport/ThreadedEntityProcessorWrapper.java
Tue Jan 12 12:22:02 2010
@@ -29,7 +29,7 @@
/**
* 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
*/
@@ -86,7 +86,7 @@
if (ABORT.equals(onError)) {
wrapAndThrow(SEVERE, e);
} 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);
return null;
}