You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by rm...@apache.org on 2014/04/22 22:06:24 UTC

svn commit: r1589276 - /lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/codecs/CodecUtil.java

Author: rmuir
Date: Tue Apr 22 20:06:23 2014
New Revision: 1589276

URL: http://svn.apache.org/r1589276
Log:
fix file format typo

Modified:
    lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/codecs/CodecUtil.java

Modified: lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/codecs/CodecUtil.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/codecs/CodecUtil.java?rev=1589276&r1=1589275&r2=1589276&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/codecs/CodecUtil.java (original)
+++ lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/codecs/CodecUtil.java Tue Apr 22 20:06:23 2014
@@ -172,7 +172,7 @@ public final class CodecUtil {
    *    <li>AlgorithmID --&gt; {@link DataOutput#writeInt Uint32}. This
    *        indicates the checksum algorithm used. Currently this is always 0,
    *        for zlib-crc32.
-   *    <li>Checksum --&gt; {@link DataOutput#writeLong Uint32}. The
+   *    <li>Checksum --&gt; {@link DataOutput#writeLong Uint64}. The
    *        actual checksum value for all previous bytes in the stream, including
    *        the bytes from Magic and AlgorithmID.
    * </ul>