You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ah...@apache.org on 2019/11/21 16:16:43 UTC

[commons-codec] branch master updated: Close javadoc
 and 

tags.

This is an automated email from the ASF dual-hosted git repository.

aherbert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-codec.git


The following commit(s) were added to refs/heads/master by this push:
     new 91cdc16  Close javadoc <pre> and </p> tags.
91cdc16 is described below

commit 91cdc1680dd16161406376548d175847132ea3ef
Author: aherbert <ah...@apache.org>
AuthorDate: Thu Nov 21 16:16:40 2019 +0000

    Close javadoc <pre> and </p> tags.
---
 .../java/org/apache/commons/codec/digest/MurmurHash3.java    | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/main/java/org/apache/commons/codec/digest/MurmurHash3.java b/src/main/java/org/apache/commons/codec/digest/MurmurHash3.java
index 9554416..1fda9ac 100644
--- a/src/main/java/org/apache/commons/codec/digest/MurmurHash3.java
+++ b/src/main/java/org/apache/commons/codec/digest/MurmurHash3.java
@@ -438,7 +438,7 @@ public final class MurmurHash3 {
      * long hash = MurmurHash3.hash64(ByteBuffer.allocate(8)
      *                                          .putLong(data)
      *                                          .array(), offset, 8, seed);
-     * <pre>
+     * </pre>
      *
      * @param data The long to hash
      * @return The 64-bit hash
@@ -475,7 +475,7 @@ public final class MurmurHash3 {
      * long hash = MurmurHash3.hash64(ByteBuffer.allocate(4)
      *                                          .putInt(data)
      *                                          .array(), offset, 4, seed);
-     * <pre>
+     * </pre>
      *
      * @param data The int to hash
      * @return The 64-bit hash
@@ -510,7 +510,7 @@ public final class MurmurHash3 {
      * long hash = MurmurHash3.hash64(ByteBuffer.allocate(2)
      *                                          .putShort(data)
      *                                          .array(), offset, 2, seed);
-     * <pre>
+     * </pre>
      *
      * @param data The short to hash
      * @return The 64-bit hash
@@ -545,7 +545,7 @@ public final class MurmurHash3 {
      * int offset = 0;
      * int seed = 104729;
      * long hash = MurmurHash3.hash64(data, offset, data.length, seed);
-     * <pre>
+     * </pre>
      *
      * @param data The input byte array
      * @return The 64-bit hash
@@ -567,7 +567,7 @@ public final class MurmurHash3 {
      * <pre>
      * int seed = 104729;
      * long hash = MurmurHash3.hash64(data, offset, length, seed);
-     * <pre>
+     * </pre>
      *
      * @param data The input byte array
      * @param offset The offset of data
@@ -590,7 +590,7 @@ public final class MurmurHash3 {
      * of data processed in the MurmurHash3 {@code MurmurHash3_x64_128} method. However the hash
      * is not mixed with a hash chunk from the next 8 bytes of data. The method will not return
      * the same value as the first or second 64-bits of the function
-     * {@link #hash128(byte[], int, int, int)}.<p>
+     * {@link #hash128(byte[], int, int, int)}.</p>
      *
      * <p>Use of this method is not advised. Use the first long returned from
      * {@link #hash128x64(byte[], int, int, int)}.<p>