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

huaxingao pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg.git


The following commit(s) were added to refs/heads/main by this push:
     new eb9360909c ORC: Fix typos in IdToOrcName and ORC JavaDoc (#15214)
eb9360909c is described below

commit eb9360909cc64397fa8e8af5effa5f0079b646a3
Author: Chihiro <[email protected]>
AuthorDate: Mon Feb 2 14:39:57 2026 +0900

    ORC: Fix typos in IdToOrcName and ORC JavaDoc (#15214)
---
 orc/src/main/java/org/apache/iceberg/orc/IdToOrcName.java | 2 +-
 orc/src/main/java/org/apache/iceberg/orc/ORC.java         | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/orc/src/main/java/org/apache/iceberg/orc/IdToOrcName.java 
b/orc/src/main/java/org/apache/iceberg/orc/IdToOrcName.java
index 1fb11d7c9e..d3b189c003 100644
--- a/orc/src/main/java/org/apache/iceberg/orc/IdToOrcName.java
+++ b/orc/src/main/java/org/apache/iceberg/orc/IdToOrcName.java
@@ -33,7 +33,7 @@ import org.apache.iceberg.types.Types;
 /**
  * Generates mapping from field IDs to ORC qualified names.
  *
- * <p>This visitor also enclose column names in backticks i.e. ` so that ORC 
can correctly parse
+ * <p>This visitor also encloses column names in backticks i.e. ` so that ORC 
can correctly parse
  * column names with special characters. A comparison of ORC convention with 
Iceberg convention is
  * provided below
  *
diff --git a/orc/src/main/java/org/apache/iceberg/orc/ORC.java 
b/orc/src/main/java/org/apache/iceberg/orc/ORC.java
index 451c670fcd..5559c0041b 100644
--- a/orc/src/main/java/org/apache/iceberg/orc/ORC.java
+++ b/orc/src/main/java/org/apache/iceberg/orc/ORC.java
@@ -179,7 +179,7 @@ public class ORC {
       return this;
     }
 
-    // supposed to always be a private method used strictly by data and delete 
write builders
+    // Supposed to always be a private method used strictly by data and delete 
write builders
     private WriteBuilder createContextFunc(
         Function<Map<String, String>, Context> newCreateContextFunc) {
       this.createContextFunc = newCreateContextFunc;

Reply via email to