You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nutch.apache.org by ab...@apache.org on 2006/04/05 07:39:30 UTC

svn commit: r391525 - /lucene/nutch/trunk/src/java/org/apache/nutch/parse/ParseStatus.java

Author: ab
Date: Tue Apr  4 22:39:28 2006
New Revision: 391525

URL: http://svn.apache.org/viewcvs?rev=391525&view=rev
Log:
Correct javadoc.

Modified:
    lucene/nutch/trunk/src/java/org/apache/nutch/parse/ParseStatus.java

Modified: lucene/nutch/trunk/src/java/org/apache/nutch/parse/ParseStatus.java
URL: http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/java/org/apache/nutch/parse/ParseStatus.java?rev=391525&r1=391524&r2=391525&view=diff
==============================================================================
--- lucene/nutch/trunk/src/java/org/apache/nutch/parse/ParseStatus.java (original)
+++ lucene/nutch/trunk/src/java/org/apache/nutch/parse/ParseStatus.java Tue Apr  4 22:39:28 2006
@@ -49,7 +49,7 @@
   
   /** Parsing failed. An Exception occured (which may be retrieved from the arguments). */
   public static final short FAILED_EXCEPTION          = 200;
-  /** Parsing failed. Invalid format - the content may be corrupted or of wrong type. */
+  /** Parsing failed. Content was truncated, but the parser cannot handle incomplete content. */
   public static final short FAILED_TRUNCATED          = 202;
   /** Parsing failed. Invalid format - the content may be corrupted or of wrong type. */
   public static final short FAILED_INVALID_FORMAT     = 203;