Skip to content

Commit a327e2c

Browse files
committed
Fix Javadoc tags.
1 parent 58870e5 commit a327e2c

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

src/main/java/org/apache/commons/codec/digest/MurmurHash3.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ public static int hash32x86(final byte[] data, final int offset, final int lengt
430430
* This method will be removed in a future release.</p>
431431
*
432432
* <p>Note: The sign extension bug in {@link #hash64(byte[], int, int, int)} does not effect
433-
* this result as the default seed is positive.<p>
433+
* this result as the default seed is positive.</p>
434434
*
435435
* <p>This is a helper method that will produce the same result as:</p>
436436
*
@@ -476,7 +476,7 @@ public static long hash64(final long data) {
476476
* This method will be removed in a future release.</p>
477477
*
478478
* <p>Note: The sign extension bug in {@link #hash64(byte[], int, int, int)} does not effect
479-
* this result as the default seed is positive.<p>
479+
* this result as the default seed is positive.</p>
480480
*
481481
* <p>This is a helper method that will produce the same result as:</p>
482482
*
@@ -520,7 +520,7 @@ public static long hash64(final int data) {
520520
* This method will be removed in a future release.</p>
521521
*
522522
* <p>Note: The sign extension bug in {@link #hash64(byte[], int, int, int)} does not effect
523-
* this result as the default seed is positive.<p>
523+
* this result as the default seed is positive.</p>
524524
*
525525
* <p>This is a helper method that will produce the same result as:</p>
526526
*
@@ -566,7 +566,7 @@ public static long hash64(final short data) {
566566
* This method will be removed in a future release.</p>
567567
*
568568
* <p>Note: The sign extension bug in {@link #hash64(byte[], int, int, int)} does not effect
569-
* this result as the default seed is positive.<p>
569+
* this result as the default seed is positive.</p>
570570
*
571571
* <p>This is a helper method that will produce the same result as:</p>
572572
*
@@ -598,7 +598,7 @@ public static long hash64(final byte[] data) {
598598
* This method will be removed in a future release.</p>
599599
*
600600
* <p>Note: The sign extension bug in {@link #hash64(byte[], int, int, int)} does not effect
601-
* this result as the default seed is positive.<p>
601+
* this result as the default seed is positive.</p>
602602
*
603603
* <p>This is a helper method that will produce the same result as:</p>
604604
*
@@ -629,7 +629,7 @@ public static long hash64(final byte[] data, final int offset, final int length)
629629
* This method will be removed in a future release.</p>
630630
*
631631
* <p>This implementation contains a sign-extension bug in the seed initialization.
632-
* This manifests if the seed is negative.<p>
632+
* This manifests if the seed is negative.</p>
633633
*
634634
* <p>This algorithm processes 8 bytes chunks of data in a manner similar to the 16 byte chunks
635635
* of data processed in the MurmurHash3 {@code MurmurHash3_x64_128} method. However the hash
@@ -711,7 +711,7 @@ public static long hash64(final byte[] data, final int offset, final int length,
711711
* </pre>
712712
*
713713
* <p>Note: The sign extension bug in {@link #hash128(byte[], int, int, int)} does not effect
714-
* this result as the default seed is positive.<p>
714+
* this result as the default seed is positive.</p>
715715
*
716716
* @param data The input byte array
717717
* @return The 128-bit hash (2 longs)
@@ -753,7 +753,7 @@ public static long[] hash128x64(final byte[] data) {
753753
* </pre>
754754
*
755755
* <p>Note: The sign extension bug in {@link #hash128(byte[], int, int, int)} does not effect
756-
* this result as the default seed is positive.<p>
756+
* this result as the default seed is positive.</p>
757757
*
758758
* @param data The input String
759759
* @return The 128-bit hash (2 longs)

0 commit comments

Comments
 (0)