Skip to content

Commit bf5ef81

Browse files
committed
Double backticks on hll, fix type on frequent items
1 parent db90841 commit bf5ef81

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

docs/source/frequent_items.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Frequent Items
22
--------------
33

4-
.. currentmodule:: dataskethches
4+
.. currentmodule:: datasketches
55

66
This sketch is useful for tracking approximate frequencies of items of type `<T>` with optional associated counts `(<T> item, int count)`
77
that are members of a multiset of such items.

docs/source/hyper_log_log.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ If the ONLY use case for sketching is counting uniques and merging, the HLL sket
77
This implementation offers three different types of HLL sketch, each with different trade-offs with accuracy, space and performance.
88
These types are specified with the target_hll_type parameter.
99

10-
In terms of accuracy, all three types, for the same lg_config_k, have the same error distribution as a function of `n`, the number of unique values fed to the sketch.
11-
The configuration parameter `lg_config_k` is the log-base-2 of `k`, where `k`` is the number of buckets or slots for the sketch.
10+
In terms of accuracy, all three types, for the same lg_config_k, have the same error distribution as a function of ``n``, the number of unique values fed to the sketch.
11+
The configuration parameter ``lg_config_k`` is the log-base-2 of ``k``, where ``k`` is the number of buckets or slots for the sketch.
1212

13-
During warmup, when the sketch has only received a small number of unique items (up to about 10% of `k`), this implementation leverages a new class of estimator algorithms with significantly better accuracy.
13+
During warmup, when the sketch has only received a small number of unique items (up to about 10% of ``k``), this implementation leverages a new class of estimator algorithms with significantly better accuracy.
1414

1515

1616
.. autoclass:: _datasketches.tgt_hll_type

0 commit comments

Comments
 (0)