From d582160a815fde2df5beececf09a482b40254b52 Mon Sep 17 00:00:00 2001 From: Maksym Arutyunyan Date: Fri, 18 Jul 2025 07:51:28 +0200 Subject: [PATCH] doc: fix typo --- src/base_vec.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/base_vec.rs b/src/base_vec.rs index 707cb303..5e6eeea2 100644 --- a/src/base_vec.rs +++ b/src/base_vec.rs @@ -62,7 +62,7 @@ pub enum InitError { /// The memory already contains another data structure. /// Use [Vec::new] to overwrite it. BadMagic { actual: [u8; 3], expected: [u8; 3] }, - /// The current version of [Vec] does not support the of the + /// The current version of [Vec] does not support the version of the /// memory layout. IncompatibleVersion(u8), /// The vector type is not compatible with the current vector