From 8de179aad7428a08fcae27746dab52e1e5862eb5 Mon Sep 17 00:00:00 2001 From: Codex Date: Fri, 24 Apr 2026 11:18:47 +0800 Subject: [PATCH] docs: fix diskio comment wording --- src/diskio/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/diskio/mod.rs b/src/diskio/mod.rs index f2400ed118..a128a88098 100644 --- a/src/diskio/mod.rs +++ b/src/diskio/mod.rs @@ -80,7 +80,7 @@ pub(crate) enum FileBuffer { } impl FileBuffer { - /// All the buffers space to be re-used when the last reference to it is dropped. + /// All the buffers space to be reused when the last reference to it is dropped. pub(crate) fn clear(&mut self) { if let FileBuffer::Threaded(contents) = self { contents.clear()