You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by mi...@apache.org on 2012/08/29 20:53:31 UTC

svn commit: r1378682 - /lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/store/ChecksumIndexInput.java

Author: mikemccand
Date: Wed Aug 29 18:53:30 2012
New Revision: 1378682

URL: http://svn.apache.org/viewvc?rev=1378682&view=rev
Log:
fix javadocs

Modified:
    lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/store/ChecksumIndexInput.java

Modified: lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/store/ChecksumIndexInput.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/store/ChecksumIndexInput.java?rev=1378682&r1=1378681&r2=1378682&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/store/ChecksumIndexInput.java (original)
+++ lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/store/ChecksumIndexInput.java Wed Aug 29 18:53:30 2012
@@ -21,7 +21,7 @@ import java.io.IOException;
 import java.util.zip.CRC32;
 import java.util.zip.Checksum;
 
-/** Writes bytes through to a primary IndexOutput, computing
+/** Reads bytes through to a primary IndexInput, computing
  *  checksum as it goes. Note that you cannot use seek().
  *
  * @lucene.internal