You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by st...@apache.org on 2020/11/10 09:26:22 UTC

[phoenix] branch 4.x updated: PHOENIX-5472 Fix few typos in the javadocs

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

stoty pushed a commit to branch 4.x
in repository https://gitbox.apache.org/repos/asf/phoenix.git


The following commit(s) were added to refs/heads/4.x by this push:
     new 21e729f  PHOENIX-5472 Fix few typos in the javadocs
21e729f is described below

commit 21e729f24d94d5aef14b94d4d2307466e800efb0
Author: dengziming <de...@growingio.com>
AuthorDate: Wed Sep 11 14:18:23 2019 +0800

    PHOENIX-5472 Fix few typos in the javadocs
---
 .../apache/hadoop/hbase/regionserver/IndexHalfStoreFileReader.java    | 2 +-
 .../java/org/apache/phoenix/iterate/TableSnapshotResultIterator.java  | 2 +-
 .../src/main/java/org/apache/phoenix/schema/MetaDataClient.java       | 2 +-
 phoenix-tracing-webapp/src/main/webapp/js/lib/angular.js              | 4 ++--
 4 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/phoenix-core/src/main/java/org/apache/hadoop/hbase/regionserver/IndexHalfStoreFileReader.java b/phoenix-core/src/main/java/org/apache/hadoop/hbase/regionserver/IndexHalfStoreFileReader.java
index 818c527..87b8277 100644
--- a/phoenix-core/src/main/java/org/apache/hadoop/hbase/regionserver/IndexHalfStoreFileReader.java
+++ b/phoenix-core/src/main/java/org/apache/hadoop/hbase/regionserver/IndexHalfStoreFileReader.java
@@ -38,7 +38,7 @@ import org.apache.phoenix.index.IndexMaintainer;
 
 /**
  * A facade for a {@link org.apache.hadoop.hbase.io.hfile.HFile.Reader} that serves up either the
- * top or bottom half of a HFile where 'bottom' is the first half of the file containing the keys
+ * top or bottom half of an HFile where 'bottom' is the first half of the file containing the keys
  * that sort lowest and 'top' is the second half of the file with keys that sort greater than those
  * of the bottom half. The top includes the split files midkey, of the key that follows if it does
  * not exist in the file.
diff --git a/phoenix-core/src/main/java/org/apache/phoenix/iterate/TableSnapshotResultIterator.java b/phoenix-core/src/main/java/org/apache/phoenix/iterate/TableSnapshotResultIterator.java
index 0f3d1e8..6f5e2ee 100644
--- a/phoenix-core/src/main/java/org/apache/phoenix/iterate/TableSnapshotResultIterator.java
+++ b/phoenix-core/src/main/java/org/apache/phoenix/iterate/TableSnapshotResultIterator.java
@@ -43,7 +43,7 @@ import java.util.List;
 import java.util.UUID;
 
 /**
- * Iterator to scan over a HBase snapshot based on input HBase Scan object.
+ * Iterator to scan over an HBase snapshot based on input HBase Scan object.
  * This iterator is generated by Phoenix during the query plan scan generation,
  * hence it will include scan attributes and custom filters.
  * Restores HBase snapshot and determines the valid regions that intersect
diff --git a/phoenix-core/src/main/java/org/apache/phoenix/schema/MetaDataClient.java b/phoenix-core/src/main/java/org/apache/phoenix/schema/MetaDataClient.java
index 7c9fa08..0a45981 100644
--- a/phoenix-core/src/main/java/org/apache/phoenix/schema/MetaDataClient.java
+++ b/phoenix-core/src/main/java/org/apache/phoenix/schema/MetaDataClient.java
@@ -5063,7 +5063,7 @@ public class MetaDataClient {
                         metaProperties.setPhoenixTTL((Long)value);
                     }
                 }
-                // if removeTableProps is true only add the property if it is not a HTable or Phoenix Table property
+                // if removeTableProps is true only add the property if it is not an HTable or Phoenix Table property
                 if (!removeTableProps || (!TableProperty.isPhoenixTableProperty(propName) && !MetaDataUtil.isHTableProperty(propName))) {
                     propsList.add(prop);
                 }
diff --git a/phoenix-tracing-webapp/src/main/webapp/js/lib/angular.js b/phoenix-tracing-webapp/src/main/webapp/js/lib/angular.js
index e488352..6f50b26 100755
--- a/phoenix-tracing-webapp/src/main/webapp/js/lib/angular.js
+++ b/phoenix-tracing-webapp/src/main/webapp/js/lib/angular.js
@@ -9078,7 +9078,7 @@ function $HttpProvider() {
      *
      * There are two kinds of interceptors (and two kinds of rejection interceptors):
      *
-     *   * `request`: interceptors get called with a http `config` object. The function is free to
+     *   * `request`: interceptors get called with an http `config` object. The function is free to
      *     modify the `config` object or create a new one. The function needs to return the `config`
      *     object directly, or a promise containing the `config` or a new `config` object.
      *   * `requestError`: interceptor gets called when a previous interceptor threw an error or
@@ -22666,7 +22666,7 @@ is set to `true`. The parse error is stored in `ngModel.$error.parse`.
  * ```
  *
  * @property {Object.<string, function>} $asyncValidators A collection of validations that are expected to
- *      perform an asynchronous validation (e.g. a HTTP request). The validation function that is provided
+ *      perform an asynchronous validation (e.g. an HTTP request). The validation function that is provided
  *      is expected to return a promise when it is run during the model validation process. Once the promise
  *      is delivered then the validation status will be set to true when fulfilled and false when rejected.
  *      When the asynchronous validators are triggered, each of the validators will run in parallel and the model