From fbc75a754433aeb430d3969ccfe2c70639f8d364 Mon Sep 17 00:00:00 2001 From: HaoranYi Date: Thu, 6 Jun 2024 09:41:30 -0500 Subject: [PATCH] fix a typo (#1619) Co-authored-by: HaoranYi --- accounts-db/src/append_vec.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/accounts-db/src/append_vec.rs b/accounts-db/src/append_vec.rs index 73de20b577769a..d5c287c4489e75 100644 --- a/accounts-db/src/append_vec.rs +++ b/accounts-db/src/append_vec.rs @@ -83,7 +83,7 @@ pub enum AppendVecError { } /// A slice whose contents are known to be valid. -/// The slice contians no undefined bytes. +/// The slice contains no undefined bytes. #[derive(Debug, Copy, Clone)] struct ValidSlice<'a>(&'a [u8]);