Skip to content

Commit fea4e97

Browse files
author
Lee Rhodes
committed
Javadoc updates
1 parent 4daa396 commit fea4e97

1 file changed

Lines changed: 7 additions & 6 deletions

File tree

src/main/java/com/yahoo/sketches/hash/MurmurHash3.java

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,23 @@
88

99
/**
1010
* <p>
11-
* The MurmurHash3_x64_128(...) is a fast, non-cryptographic, 128-bit hash function that has
11+
* The MurmurHash3 is a fast, non-cryptographic, 128-bit hash function that has
1212
* excellent avalanche and 2-way bit independence properties.
1313
* </p>
1414
*
1515
* <p>
16-
* The C++ version, revision 150, of the MurmurHash3, written by Austin Appleby, and which is in the
17-
* Public Domain, was the inspiration for this implementation in Java. The C++ version can be found
18-
* at <a href= "http://code.google.com/p/smhasher/source/browse/trunk/MurmurHash3.cpp"> SMHasher &amp;
16+
* The C++ MurmurHash3_x64_128(...), revision 150, of the MurmurHash3, written by Austin Appleby,
17+
* which is in the Public Domain, was the inspiration for this implementation in Java.
18+
* The C++ version can be found at
19+
* <a href= "http://code.google.com/p/smhasher/source/browse/trunk/MurmurHash3.cpp"> SMHasher &amp;
1920
* MurmurHash</a>.
2021
* </p>
2122
*
2223
* <p>
23-
* This java implementation pays close attention to the C++ mathematical algorithms in order to
24+
* This java implementation pays close attention to the C++ algorithms in order to
2425
* maintain bit-wise compatibility, but the design is quite different. This implementation has also
2526
* been extended to include processing of arrays of longs or ints, which was not part of the
26-
* original C++ implementation. This implementation will produce the same exact output hash bits as
27+
* original C++ implementation. This implementation produces the same exact output hash bits as
2728
* the above C++ method given the same input. Byte arrays that are a multiple of 8 bytes in length
2829
* will produce the same output hash as the equivalent long array in little-endian byte order.
2930
* </p>

0 commit comments

Comments
 (0)