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

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


The following commit(s) were added to refs/heads/master by this push:
     new 097e5a8687 [MINOR] Fix a few typos in HoodieIndex (#6784)
097e5a8687 is described below

commit 097e5a868746695ae63713c1dfc0a97c1416471c
Author: Xingjun Wang <[email protected]>
AuthorDate: Sat Sep 24 11:55:24 2022 +0800

    [MINOR] Fix a few typos in HoodieIndex (#6784)
    
    Co-authored-by: xingjunwang <[email protected]>
---
 .../src/main/java/org/apache/hudi/index/HoodieIndex.java            | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/hudi-client/hudi-client-common/src/main/java/org/apache/hudi/index/HoodieIndex.java
 
b/hudi-client/hudi-client-common/src/main/java/org/apache/hudi/index/HoodieIndex.java
index 4b8640fabf..7df8a6b0a0 100644
--- 
a/hudi-client/hudi-client-common/src/main/java/org/apache/hudi/index/HoodieIndex.java
+++ 
b/hudi-client/hudi-client-common/src/main/java/org/apache/hudi/index/HoodieIndex.java
@@ -111,13 +111,13 @@ public abstract class HoodieIndex<I, O> implements 
Serializable {
    * implementation is able to obtain the same mapping, for two hoodie keys 
with same `recordKey` but different
    * `partitionPath`
    *
-   * @return whether or not, the index implementation is global in nature
+   * @return whether the index implementation is global in nature
    */
   @PublicAPIMethod(maturity = ApiMaturityLevel.STABLE)
   public abstract boolean isGlobal();
 
   /**
-   * This is used by storage to determine, if its safe to send inserts, 
straight to the log, i.e having a
+   * This is used by storage to determine, if it is safe to send inserts, 
straight to the log, i.e. having a
    * {@link FileSlice}, with no data file.
    *
    * @return Returns true/false depending on whether the impl has this 
capability
@@ -133,7 +133,7 @@ public abstract class HoodieIndex<I, O> implements 
Serializable {
   public abstract boolean isImplicitWithStorage();
 
   /**
-   * To indicate if a operation type requires location tagging before writing
+   * To indicate if an operation type requires location tagging before writing
    */
   @PublicAPIMethod(maturity = ApiMaturityLevel.EVOLVING)
   public boolean requiresTagging(WriteOperationType operationType) {

Reply via email to