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

yuqi4733 pushed a commit to branch branch-0.9
in repository https://gitbox.apache.org/repos/asf/gravitino.git


The following commit(s) were added to refs/heads/branch-0.9 by this push:
     new 21ad8d2955 [MINOR]: fix some typo (#7448)
21ad8d2955 is described below

commit 21ad8d29551bec4610f6bfa8c7ba63df98768548
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Sat Jun 21 18:10:57 2025 +0800

    [MINOR]: fix some typo (#7448)
    
    ### What changes were proposed in this pull request?
    
    Fix some typos.
    
    ### Why are the changes needed?
    
    It's an improvement.
    
    
    ### Does this PR introduce _any_ user-facing change?
    
    N/A
    
    ### How was this patch tested?
    
    N/A
    
    Co-authored-by: Mini Yu <[email protected]>
---
 .../org/apache/gravitino/authorization/ranger/reference/VList.java  | 2 +-
 clients/cli/src/main/java/org/apache/gravitino/cli/FullName.java    | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git 
a/authorizations/authorization-ranger/src/main/java/org/apache/gravitino/authorization/ranger/reference/VList.java
 
b/authorizations/authorization-ranger/src/main/java/org/apache/gravitino/authorization/ranger/reference/VList.java
index 02e3fb962e..899e637078 100644
--- 
a/authorizations/authorization-ranger/src/main/java/org/apache/gravitino/authorization/ranger/reference/VList.java
+++ 
b/authorizations/authorization-ranger/src/main/java/org/apache/gravitino/authorization/ranger/reference/VList.java
@@ -35,7 +35,7 @@ public abstract class VList implements java.io.Serializable {
   @Setter protected int resultSize;
   /** Sort type. Either desc or asc. */
   @Setter protected String sortType;
-  /** Comma seperated list of the fields for sorting. */
+  /** Comma separated list of the fields for sorting. */
   @Setter protected String sortBy;
 
   protected long queryTimeMS = System.currentTimeMillis();
diff --git a/clients/cli/src/main/java/org/apache/gravitino/cli/FullName.java 
b/clients/cli/src/main/java/org/apache/gravitino/cli/FullName.java
index f6de0213ed..0d0979ac41 100644
--- a/clients/cli/src/main/java/org/apache/gravitino/cli/FullName.java
+++ b/clients/cli/src/main/java/org/apache/gravitino/cli/FullName.java
@@ -28,7 +28,7 @@ import org.apache.commons.cli.CommandLine;
 public class FullName {
   private final CommandLine line;
   private String metalakeEnv;
-  private boolean matalakeSet = false;
+  private boolean metalakeSet = false;
   private boolean hasDisplayedMissingNameInfo = true;
   private boolean hasDisplayedMalformedInfo = true;
 
@@ -70,9 +70,9 @@ public class FullName {
     }
 
     // Cache the metalake environment variable
-    if (metalakeEnv == null && !matalakeSet) {
+    if (metalakeEnv == null && !metalakeSet) {
       metalakeEnv = System.getenv("GRAVITINO_METALAKE");
-      matalakeSet = true;
+      metalakeSet = true;
     }
 
     // Check if the metalake name is set as an environment variable

Reply via email to