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
2 changes: 1 addition & 1 deletion block-buffer/src/read.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use core::fmt;
/// Buffer for reading block-generated data.
pub struct ReadBuffer<BS: ArraySize> {
/// The first byte of the block is used as cursor position.
/// `&buffer[usize::from(buffer[0])..]` is iterpreted as unread bytes.
/// `&buffer[usize::from(buffer[0])..]` is interpreted as unread bytes.
/// The cursor position is always bigger than zero and smaller than or equal to block size.
buffer: Array<u8, BS>,
}
Expand Down