Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Commit

Permalink
Update src/array/fixed_size_binary/mutable.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Jorge Leitao <[email protected]>
  • Loading branch information
ygf11 and jorgecarleitao authored Apr 29, 2022
1 parent c83a32b commit 296d7e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/array/fixed_size_binary/mutable.rs
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ impl MutableFixedSizeBinaryArray {
}

/// Pop the last entry from [`MutableFixedSizeBinaryArray`].
/// Note If the values is empty, this method will return None.
/// This function returns `None` iff this array is empty
pub fn pop(&mut self) -> Option<Vec<u8>> {
if self.values.len() < self.size {
return None;
Expand Down

0 comments on commit 296d7e7

Please sign in to comment.