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

alsay pushed a commit to branch req_sketch_to_string
in repository 
https://gitbox.apache.org/repos/asf/incubator-datasketches-java.git

commit 77e9d462d6c3dd6ab1d89a25f2e9dc1d1e1a84eb
Author: AlexanderSaydakov <[email protected]>
AuthorDate: Wed Oct 21 16:03:19 2020 -0700

    spelling fixes
---
 src/main/java/org/apache/datasketches/Criteria.java | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/main/java/org/apache/datasketches/Criteria.java 
b/src/main/java/org/apache/datasketches/Criteria.java
index 1a51e21..f3f9e0f 100644
--- a/src/main/java/org/apache/datasketches/Criteria.java
+++ b/src/main/java/org/apache/datasketches/Criteria.java
@@ -62,7 +62,7 @@ package org.apache.datasketches;
 public enum Criteria {
 
   /**
-   * Given an sorted array of increasing values <i>arr[]</i> and a key value 
<i>V</i>,
+   * Given a sorted array of increasing values <i>arr[]</i> and a key value 
<i>V</i>,
    * this criterion instructs the binary search algorithm to find the highest 
adjacent pair of
    * values <i>{A,B}</i> such that <i>A &lt; V &le; B</i>.
    * The returned value from the binary search algorithm will be the index of 
<i>A</i>
@@ -125,7 +125,7 @@ public enum Criteria {
   },
 
   /**
-   * Given an sorted array of increasing values <i>arr[]</i> and a key value 
<i>V</i>,
+   * Given a sorted array of increasing values <i>arr[]</i> and a key value 
<i>V</i>,
    * this criterion instructs the binary search algorithm to find the highest 
adjacent pair of
    * values <i>{A,B}</i> such that <i>A &le; V &lt; B</i>.
    * The returned value from the binary search algorithm will be the index of 
<i>A</i>
@@ -188,7 +188,7 @@ public enum Criteria {
   },
 
   /**
-   * Given an sorted array of increasing values <i>arr[]</i> and a key value 
<i>V</i>,
+   * Given a sorted array of increasing values <i>arr[]</i> and a key value 
<i>V</i>,
    * this criterion instructs the binary search algorithm to find the adjacent 
pair of
    * values <i>{A,B}</i> such that <i>A &le; V &le; B</i>.
    * The returned value from the binary search algorithm will be the index of 
<i>A</i> or <i>B</i>,
@@ -250,7 +250,7 @@ public enum Criteria {
   },
 
   /**
-   * Given an sorted array of increasing values <i>arr[]</i> and a key value 
<i>V</i>,
+   * Given a sorted array of increasing values <i>arr[]</i> and a key value 
<i>V</i>,
    * this criterion instructs the binary search algorithm to find the lowest 
adjacent pair of
    * values <i>{A,B}</i> such that <i>A &lt; V &le; B</i>.
    * The returned value from the binary search algorithm will be the index of 
<i>B</i>
@@ -313,7 +313,7 @@ public enum Criteria {
   },
 
   /**
-   * Given an sorted array of increasing values <i>arr[]</i> and a key value 
<i>V</i>,
+   * Given a sorted array of increasing values <i>arr[]</i> and a key value 
<i>V</i>,
    * this criterion instructs the binary search algorithm to find the lowest 
adjacent pair of
    * values <i>{A,B}</i> such that <i>A &le; V &lt; B</i>.
    * The returned value from the binary search algorithm will be the index of 
<i>B</i>


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

Reply via email to