From 89981152eac78431243f29e58fba7cc10704e281 Mon Sep 17 00:00:00 2001 From: Peter Lawrey Date: Sat, 18 Apr 2026 12:15:13 +0100 Subject: [PATCH] docs: close the space in Latin abbreviations "i. e." and "e. g." Replaces "i. e." with "i.e." and "e. g." with "e.g." across javadoc, AsciiDoc, and Markdown files. Matches the conventional English rendering and the style used elsewhere in these repos. Co-Authored-By: Claude Opus 4.7 (1M context) --- .../java/net/openhft/hashing/LongHashFunction.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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}