Skip to content

Commit

Permalink
fix typo like bitwith
Browse files Browse the repository at this point in the history
  • Loading branch information
mapleFU committed Sep 29, 2023
1 parent a1bacf8 commit 875e483
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand All @@ -97,7 +97,7 @@ protected void writeBitWidthForMiniBlock(int i) {
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);
}
}

Expand Down

0 comments on commit 875e483

Please sign in to comment.