Author: sebb Date: Tue Apr 14 15:49:33 2009 New Revision: 764845 URL: http://svn.apache.org/viewvc?rev=764845&view=rev Log: Fix Javadoc markup
Modified: commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/ar/ArArchiveEntry.java Modified: commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/ar/ArArchiveEntry.java URL: http://svn.apache.org/viewvc/commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/ar/ArArchiveEntry.java?rev=764845&r1=764844&r2=764845&view=diff ============================================================================== --- commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/ar/ArArchiveEntry.java (original) +++ commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/ar/ArArchiveEntry.java Tue Apr 14 15:49:33 2009 @@ -28,7 +28,7 @@ * Each AR archive starts with "!<arch>" followed by a LF. After these 8 bytes * the archive entries are listed. The format of an entry header is as it follows: * - * <code> + * <pre> * START BYTE END BYTE NAME FORMAT LENGTH * 0 15 File name ASCII 16 * 16 27 Modification timestamp Decimal 12 @@ -37,7 +37,7 @@ * 40 47 File mode Octal 8 * 48 57 File size (bytes) Decimal 10 * 58 59 File magic \140\012 2 - * </code> + * </pre> * * This specifies that an ar archive entry header contains 60 bytes. *