Skip to content

Commit c9f7bfe

Browse files
authored
block-buffer: fix typo (#1234)
1 parent 64c135a commit c9f7bfe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

block-buffer/src/read.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use core::fmt;
44
/// Buffer for reading block-generated data.
55
pub struct ReadBuffer<BS: ArraySize> {
66
/// The first byte of the block is used as cursor position.
7-
/// `&buffer[usize::from(buffer[0])..]` is iterpreted as unread bytes.
7+
/// `&buffer[usize::from(buffer[0])..]` is interpreted as unread bytes.
88
/// The cursor position is always bigger than zero and smaller than or equal to block size.
99
buffer: Array<u8, BS>,
1010
}

0 commit comments

Comments
 (0)