Skip to content

Commit 51d880d

Browse files
author
Lee Rhodes
committed
javadoc fixes
1 parent c13f661 commit 51d880d

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/main/java/com/yahoo/sketches/frequencies/FrequentItemsSketch.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@
7070
* <p><b>Maximum Capacity of the Sketch</b></p>
7171
*
7272
* <p>The LOAD_FACTOR for the hash map is internally set at 75%,
73-
* which means at any time the map capacity of (item, count) pairs is <i>mapCap</i> = 0.75 X
73+
* which means at any time the map capacity of (item, count) pairs is <i>mapCap</i> = 0.75 *
7474
* <i>mapSize</i>.
75-
* The maximum capacity of (item, count) pairs of the sketch is <i>maxMapCap</i> = 0.75 X
75+
* The maximum capacity of (item, count) pairs of the sketch is <i>maxMapCap</i> = 0.75 *
7676
* <i>maxMapSize</i>.
7777
* Papers that describe the mathematical error properties of this type of algorithm often
7878
* refer to sketch capacity with the symbol <i>k</i>.</p>

src/main/java/com/yahoo/sketches/frequencies/FrequentLongsSketch.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
*
6969
* <p>The LOAD_FACTOR for the hash map is internally set at 75%,
7070
* which means at any time the map capacity of (item, count) pairs is <i>mapCap</i> =
71-
* 0.75 * <i><mapSize</i>.
71+
* 0.75 * <i>mapSize</i>.
7272
* The maximum capacity of (item, count) pairs of the sketch is <i>maxMapCap</i> =
7373
* 0.75 * <i>maxMapSize</i>.
7474
* Papers that describe the mathematical error properties of this type of algorithm often

0 commit comments

Comments
 (0)