diff --git a/src/main/java/net/openhft/hashing/LongHashFunction.java b/src/main/java/net/openhft/hashing/LongHashFunction.java index 6eb940d..d5704f5 100644 --- a/src/main/java/net/openhft/hashing/LongHashFunction.java +++ b/src/main/java/net/openhft/hashing/LongHashFunction.java @@ -626,7 +626,7 @@ public long hashChars(@NotNull char[] input) { * * @param input the array to read data from * @param off index of the first {@code char} in the subsequence to hash - * @param len length of the subsequence to hash, in chars (i. e. the length of the bytes + * @param len length of the subsequence to hash, in chars (i.e. the length of the bytes * sequence to hash is {@code len * 2L}) * @return hash code for the specified subsequence * @throws IndexOutOfBoundsException if {@code off < 0} or {@code off + len > input.length} @@ -656,7 +656,7 @@ public long hashChars(@NotNull String input) { * * @param input the string which bytes to hash * @param off index of the first {@code char} in the subsequence to hash - * @param len length of the subsequence to hash, in chars (i. e. the length of the bytes + * @param len length of the subsequence to hash, in chars (i.e. the length of the bytes * sequence to hash is {@code len * 2L}) * @return the hash code of the given {@code String}'s bytes * @throws IndexOutOfBoundsException if {@code off < 0} or {@code off + len > input.length()} @@ -686,7 +686,7 @@ public long hashChars(@NotNull StringBuilder input) { * * @param input the string builder which bytes to hash * @param off index of the first {@code char} in the subsequence to hash - * @param len length of the subsequence to hash, in chars (i. e. the length of the bytes + * @param len length of the subsequence to hash, in chars (i.e. the length of the bytes * sequence to hash is {@code len * 2L}) * @return the hash code of the given {@code String}'s bytes * @throws IndexOutOfBoundsException if {@code off < 0} or {@code off + len > input.length()} @@ -738,7 +738,7 @@ public long hashShorts(@NotNull short[] input) { * * @param input the array to read data from * @param off index of the first {@code short} in the subsequence to hash - * @param len length of the subsequence to hash, in shorts (i. e. the length of the bytes + * @param len length of the subsequence to hash, in shorts (i.e. the length of the bytes * sequence to hash is {@code len * 2L}) * @return hash code for the specified subsequence * @throws IndexOutOfBoundsException if {@code off < 0} or {@code off + len > input.length} @@ -768,7 +768,7 @@ public long hashInts(@NotNull int[] input) { * * @param input the array to read data from * @param off index of the first {@code int} in the subsequence to hash - * @param len length of the subsequence to hash, in ints (i. e. the length of the bytes + * @param len length of the subsequence to hash, in ints (i.e. the length of the bytes * sequence to hash is {@code len * 4L}) * @return hash code for the specified subsequence * @throws IndexOutOfBoundsException if {@code off < 0} or {@code off + len > input.length} @@ -798,7 +798,7 @@ public long hashLongs(@NotNull long[] input) { * * @param input the array to read data from * @param off index of the first {@code long} in the subsequence to hash - * @param len length of the subsequence to hash, in longs (i. e. the length of the bytes + * @param len length of the subsequence to hash, in longs (i.e. the length of the bytes * sequence to hash is {@code len * 8L}) * @return hash code for the specified subsequence * @throws IndexOutOfBoundsException if {@code off < 0} or {@code off + len > input.length}