This is an automated email from the ASF dual-hosted git repository.

leerho pushed a commit to branch update_quantiles_theta_docs
in repository https://gitbox.apache.org/repos/asf/datasketches-website.git

commit 250a589832b6a918acfd16ead90dd46f3249ea81
Author: Lee Rhodes <[email protected]>
AuthorDate: Thu Sep 12 16:37:50 2024 -0700

    Update quantiles & theta docs.
---
 docs/Quantiles/QuantilesOverview.md | 7 ++++---
 docs/Theta/ThetaSketchSetOps.md     | 2 +-
 2 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/docs/Quantiles/QuantilesOverview.md 
b/docs/Quantiles/QuantilesOverview.md
index 6fa83fb5..e059944e 100644
--- a/docs/Quantiles/QuantilesOverview.md
+++ b/docs/Quantiles/QuantilesOverview.md
@@ -59,8 +59,8 @@ These sketches have many parallel methods. Please refer to 
the sketch API docume
                * Exclusive, which is compatible with the KLL and older 
Quantiles Sketch
                * Inclusive, a common definition in some of the theoretical 
literature. 
        * Accuracy %: a function of *K* and independent of rank. 
-       * Dedicated *double* implentation, which can be configured for off-heap 
operation.
-       * Generic implementation for arbitrary comparible types.
+       * Dedicated *double* and generic *item* implentations for arbitrary 
comparable types. 
+       * The *double* implementation can be configured for off-heap operation.
 
 
 ### The KLL Sketch
@@ -79,7 +79,8 @@ These sketches have many parallel methods. Please refer to 
the sketch API docume
                * Inclusive, a common definition in some of the theoretical 
literature.
        * Accuracy %: a function of *K* and independent of rank. 
        * Near optimal accuracy per sketch size compared to other constant 
accuracy quantiles sketches. 
-       * Java: Dedicated *float* and *double* implementations.
+       * Java: Dedicated *float*, *double*, *long*, and generic *item* 
implementations.
+       * The *float*, *double*, and *long* implementations can be configured 
for off-heap operation.
        * C++: Template implementation for arbitrary comparible types.
        * Python: Dedicated *float* and *integer* implementations
 
diff --git a/docs/Theta/ThetaSketchSetOps.md b/docs/Theta/ThetaSketchSetOps.md
index ca0de45d..bc50f389 100644
--- a/docs/Theta/ThetaSketchSetOps.md
+++ b/docs/Theta/ThetaSketchSetOps.md
@@ -41,7 +41,7 @@ The Union and Intersection operations are symmetric (i.e., 
sketch order insensit
 and naturally iterative. 
 The AnotB operation, however, is asymmetric (i.e., sketch order sensitive) and 
not iterative. 
 
-This is a Java example of all three operatins:
+This is a Java example of all three operations:
 
     import static org.testng.Assert.assertEquals;
     import org.testng.annotations.Test;


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to