From ed2ca1c88e3b88951adbed3f2fc65a82fc34b9c3 Mon Sep 17 00:00:00 2001 From: Artyom Pavlov Date: Mon, 6 Oct 2025 14:58:15 +0300 Subject: [PATCH] block-buffer: fix typo --- block-buffer/src/read.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, }