Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/iceberg/deletes/roaring_position_bitmap.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ namespace iceberg {
/// maintained to store positions for that key.
///

/// \note This class is used to represent deletion vectors. The Puffin puffin
/// reader/write handle adding the additional required framing (length prefix, magic,
/// magic bytes, CRC-32) for `deletion-vector-v1` persistence.
/// \note This class is used to represent deletion vectors. The Puffin reader/writer
/// handle adding the additional required framing (length prefix, magic bytes, CRC-32)
/// for `deletion-vector-v1` persistence.
class ICEBERG_EXPORT RoaringPositionBitmap {
public:
/// \brief Maximum supported position (aligned with the Java implementation).
Expand Down
Loading