Skip to content

Commit

Permalink
fix: Fixed Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
cliedeman authored and aloneguid committed Sep 6, 2024
1 parent f556cd2 commit 8535bcf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Parquet/Data/DataColumnStatistics.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ public DataColumnStatistics(long? nullCount, long? distinctCount, object? minVal
internal Statistics ToThriftStatistics(SchemaElement tse) {

if(!ParquetPlainEncoder.TryEncode(MinValue, tse, out byte[]? min)) {
throw new ArgumentException($"cound not encode {MinValue}", nameof(MinValue));
throw new ArgumentException($"could not encode {MinValue}", nameof(MinValue));
}

if(!ParquetPlainEncoder.TryEncode(MaxValue, tse, out byte[]? max)) {
throw new ArgumentException($"cound not encode {MinValue}", nameof(MinValue));
throw new ArgumentException($"could not encode {MinValue}", nameof(MinValue));
}

return new Statistics {
Expand Down

0 comments on commit 8535bcf

Please sign in to comment.