You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@lucene.apache.org by dn...@apache.org on 2008/10/11 21:45:16 UTC

svn commit: r703717 - /lucene/java/trunk/contrib/instantiated/src/java/org/apache/lucene/store/instantiated/InstantiatedIndexWriter.java

Author: dnaber
Date: Sat Oct 11 12:45:16 2008
New Revision: 703717

URL: http://svn.apache.org/viewvc?rev=703717&view=rev
Log:
minor javadoc fix

Modified:
    lucene/java/trunk/contrib/instantiated/src/java/org/apache/lucene/store/instantiated/InstantiatedIndexWriter.java

Modified: lucene/java/trunk/contrib/instantiated/src/java/org/apache/lucene/store/instantiated/InstantiatedIndexWriter.java
URL: http://svn.apache.org/viewvc/lucene/java/trunk/contrib/instantiated/src/java/org/apache/lucene/store/instantiated/InstantiatedIndexWriter.java?rev=703717&r1=703716&r2=703717&view=diff
==============================================================================
--- lucene/java/trunk/contrib/instantiated/src/java/org/apache/lucene/store/instantiated/InstantiatedIndexWriter.java (original)
+++ lucene/java/trunk/contrib/instantiated/src/java/org/apache/lucene/store/instantiated/InstantiatedIndexWriter.java Sat Oct 11 12:45:16 2008
@@ -48,7 +48,7 @@
  * This class, similar to {@link org.apache.lucene.index.IndexWriter}, has no locking mechanism.
  * <p>
  * {@link org.apache.lucene.store.instantiated.InstantiatedIndexReader} is navigating
- * the same instances in memory as this writer is updating so searchers actice while
+ * the same instances in memory as this writer is updating so searchers active while
  * you are committing are bound to throw exceptions.
  * <p>
  * Consider using InstantiatedIndex as if it was immutable.
@@ -126,7 +126,8 @@
 
   /**
    * If non-null, information about merges and a message when
-   * maxFieldLength is reached will be printed to this.
+   * maxFieldLength is reached could be printed to this -- currently
+   * not yet implemented.
    */
   public void setInfoStream(PrintStream infoStream) {
     this.infoStream = infoStream;