diff --git a/src/java/org/apache/lucene/index/CompoundFileWriter.java b/src/java/org/apache/lucene/index/CompoundFileWriter.java
index 0d286db259a..1a41e7b3143 100644
--- a/src/java/org/apache/lucene/index/CompoundFileWriter.java
+++ b/src/java/org/apache/lucene/index/CompoundFileWriter.java
@@ -34,7 +34,7 @@ import java.io.IOException;
* fileCount entries with the following structure:
*
* - long dataOffset
- * - UTFString extension
+ * - String fileName
*
* {File Data}
* fileCount entries with the raw data of the corresponding file
@@ -42,8 +42,8 @@ import java.io.IOException;
*
* The fileCount integer indicates how many files are contained in this compound
* file. The {directory} that follows has that many entries. Each directory entry
- * contains an encoding identifier, a long pointer to the start of this file's
- * data section, and a UTF String with that file's extension.
+ * contains a long pointer to the start of this file's data section, and a String
+ * with that file's name.
*
* @author Dmitry Serebrennikov
* @version $Id$