diff --git a/block-buffer/src/read.rs b/block-buffer/src/read.rs index f8d66ba1..bf042af1 100644 --- a/block-buffer/src/read.rs +++ b/block-buffer/src/read.rs @@ -4,7 +4,7 @@ use core::fmt; /// Buffer for reading block-generated data. pub struct ReadBuffer { /// 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, }