From 097e5a868746695ae63713c1dfc0a97c1416471c Mon Sep 17 00:00:00 2001 From: Xingjun Wang Date: Sat, 24 Sep 2022 11:55:24 +0800 Subject: [PATCH] [MINOR] Fix a few typos in HoodieIndex (#6784) Co-authored-by: xingjunwang --- .../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 4b8640fabf73..7df8a6b0a0e9 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 HoodieData updateLocation( * 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 HoodieData updateLocation( 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) {