alamb commented on code in PR #9155:
URL: https://github.com/apache/arrow-rs/pull/9155#discussion_r2686674089
##########
arrow-buffer/src/buffer/null.rs:
##########
@@ -19,13 +19,14 @@ use crate::bit_iterator::{BitIndexIterator, BitIterator,
BitSliceIterator};
use crate::buffer::BooleanBuffer;
use crate::{Buffer, MutableBuffer};
-/// A [`BooleanBuffer`] used to encode validity for Arrow arrays
+/// A [`BooleanBuffer`] used to encode validity (null values) for Arrow arrays
///
/// In the [Arrow specification], array validity is encoded in a packed
bitmask with a
/// `true` value indicating the corresponding slot is not null, and `false`
indicating
/// that it is null.
///
-/// `NullBuffer`s can be creating using [`NullBufferBuilder`]
+/// # See also
+/// * [`NullBufferBuilder`] for creating `NullBuffer`s
Review Comment:
adding some comments here to help navigate the maze of builders available
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]