Author: bodewig Date: Thu Jul 21 08:38:24 2011 New Revision: 1149073 URL: http://svn.apache.org/viewvc?rev=1149073&view=rev Log: spelling
Modified: commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/zip/ZipLong.java commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/zip/ZipShort.java Modified: commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/zip/ZipLong.java URL: http://svn.apache.org/viewvc/commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/zip/ZipLong.java?rev=1149073&r1=1149072&r2=1149073&view=diff ============================================================================== --- commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/zip/ZipLong.java (original) +++ commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/zip/ZipLong.java Thu Jul 21 08:38:24 2011 @@ -113,7 +113,7 @@ public final class ZipLong implements Cl * Helper method to get the value as a Java long from four bytes starting at given array offset * @param bytes the array of bytes * @param offset the offset to start - * @return the correspondanding Java long value + * @return the corresponding Java long value */ public static long getValue(byte[] bytes, int offset) { long value = (bytes[offset + BYTE_3] << BYTE_3_SHIFT) & BYTE_3_MASK; @@ -126,7 +126,7 @@ public final class ZipLong implements Cl /** * Helper method to get the value as a Java long from a four-byte array * @param bytes the array of bytes - * @return the correspondanding Java long value + * @return the corresponding Java long value */ public static long getValue(byte[] bytes) { return getValue(bytes, 0); Modified: commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/zip/ZipShort.java URL: http://svn.apache.org/viewvc/commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/zip/ZipShort.java?rev=1149073&r1=1149072&r2=1149073&view=diff ============================================================================== --- commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/zip/ZipShort.java (original) +++ commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/zip/ZipShort.java Thu Jul 21 08:38:24 2011 @@ -89,7 +89,7 @@ public final class ZipShort implements C * Helper method to get the value as a java int from two bytes starting at given array offset * @param bytes the array of bytes * @param offset the offset to start - * @return the correspondanding java int value + * @return the corresponding java int value */ public static int getValue(byte[] bytes, int offset) { int value = (bytes[offset + 1] << BYTE_1_SHIFT) & BYTE_1_MASK; @@ -100,7 +100,7 @@ public final class ZipShort implements C /** * Helper method to get the value as a java int from a two-byte array * @param bytes the array of bytes - * @return the correspondanding java int value + * @return the corresponding java int value */ public static int getValue(byte[] bytes) { return getValue(bytes, 0);