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

shangxinli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/parquet-mr.git


The following commit(s) were added to refs/heads/master by this push:
     new c78c95306 fix typo like bitwith (#1159)
c78c95306 is described below

commit c78c95306bda3d1e77a93d53de6c6106dfd85e97
Author: mwish <[email protected]>
AuthorDate: Tue Oct 3 23:03:43 2023 +0800

    fix typo like bitwith (#1159)
---
 .../parquet/column/values/delta/DeltaBinaryPackingValuesWriter.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/parquet-column/src/main/java/org/apache/parquet/column/values/delta/DeltaBinaryPackingValuesWriter.java
 
b/parquet-column/src/main/java/org/apache/parquet/column/values/delta/DeltaBinaryPackingValuesWriter.java
index a615fc8dc..9c595e77d 100644
--- 
a/parquet-column/src/main/java/org/apache/parquet/column/values/delta/DeltaBinaryPackingValuesWriter.java
+++ 
b/parquet-column/src/main/java/org/apache/parquet/column/values/delta/DeltaBinaryPackingValuesWriter.java
@@ -73,7 +73,7 @@ public abstract class DeltaBinaryPackingValuesWriter extends 
ValuesWriter {
 
   /**
    * bytes buffer for a mini block, it is reused for each mini block.
-   * Therefore the size of biggest miniblock with bitwith of MAX_BITWITH is 
allocated
+   * Therefore the size of biggest miniblock with bitwidth of MAX_BITWIDTH is 
allocated
    */
   protected byte[] miniBlockByteBuffer;
 
@@ -97,7 +97,7 @@ public abstract class DeltaBinaryPackingValuesWriter extends 
ValuesWriter {
     try {
       BytesUtils.writeIntLittleEndianOnOneByte(baos, bitWidths[i]);
     } catch (IOException e) {
-      throw new ParquetEncodingException("can not write bitwith for 
miniblock", e);
+      throw new ParquetEncodingException("can not write bitwidth for 
miniblock", e);
     }
   }
 

Reply via email to