Skip to content

Commit 49e7cc2

Browse files
committed
fix-lint
1 parent fb1c65c commit 49e7cc2

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

cpp/src/parquet/encoder.cc

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -448,12 +448,11 @@ int64_t RlePreserveBufferSize(int64_t num_values, int bit_width) {
448448
}
449449

450450
/// See the dictionary encoding section of
451-
/// https://github.com/apache/parquet-format/blob/master/Encodings.md. The encoding supports
452-
/// streaming encoding. Values are encoded as they are added while the
453-
/// dictionary is being constructed. At any time, the buffered values
454-
/// can be written out with the current dictionary size. More values
455-
/// can then be added to the encoder, including new dictionary
456-
/// entries.
451+
/// https://github.com/apache/parquet-format/blob/master/Encodings.md. The encoding
452+
/// supports streaming encoding. Values are encoded as they are added while the dictionary
453+
/// is being constructed. At any time, the buffered values can be written out with the
454+
/// current dictionary size. More values can then be added to the encoder, including new
455+
/// dictionary entries.
457456
template <typename DType>
458457
class DictEncoderImpl : public EncoderImpl, virtual public DictEncoder<DType> {
459458
using MemoTableType = typename DictEncoderTraits<DType>::MemoTableType;

0 commit comments

Comments
 (0)