You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by gj...@apache.org on 2019/12/06 04:26:25 UTC

[phoenix] branch master updated: Fix few typos in the javadocs

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

gjacoby pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/phoenix.git


The following commit(s) were added to refs/heads/master by this push:
     new 5b84341  Fix few typos in the javadocs
5b84341 is described below

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

    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 107e9ca..f4e9354 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
@@ -39,7 +39,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 17c8e36..5063ae7 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
@@ -42,7 +42,7 @@ import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
 /**
- * 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 f517a3c..602cf8c 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
@@ -4635,7 +4635,7 @@ public class MetaDataClient {
                         metaProperties.setUseStatsForParallelizationProp((Boolean)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