From c1e0f6020d937b89171882ab889bfbb8a6e9d3ea Mon Sep 17 00:00:00 2001 From: Maksym Arutyunyan Date: Mon, 14 Jul 2025 10:44:29 +0200 Subject: [PATCH 1/3] chore: improve wording --- README.md | 2 +- src/vec/tests.rs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index fb268cee..1facf2cb 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ Stable structures are able to work directly in stable memory because each data s its own memory. When initializing a stable structure, a memory is provided that the data structure can use to store its data. -Here's a basic examples: +Here are a basic examples: ### Example: BTreeMap diff --git a/src/vec/tests.rs b/src/vec/tests.rs index ef422889..5e021e6f 100644 --- a/src/vec/tests.rs +++ b/src/vec/tests.rs @@ -249,8 +249,8 @@ fn test_iter_count() { } } -// A struct with a bugg implementation of storable where the max_size can -// smaller than the serialized size. +// A struct with a buggy implementation of `Storable` where the max_size can +// be smaller than the serialized size. #[derive(Clone, Ord, PartialOrd, Eq, PartialEq)] struct BuggyStruct(Vec); impl crate::Storable for BuggyStruct { From 05a483939c883f83536cb649cd1271aa30798d04 Mon Sep 17 00:00:00 2001 From: Maksym Arutyunyan Date: Mon, 14 Jul 2025 10:45:01 +0200 Subject: [PATCH 2/3] . --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1facf2cb..79ca7ad5 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ Stable structures are able to work directly in stable memory because each data s its own memory. When initializing a stable structure, a memory is provided that the data structure can use to store its data. -Here are a basic examples: +Here are some basic examples: ### Example: BTreeMap From bcf3bf6a64b39145e330e0b15cac96ed41f87ab0 Mon Sep 17 00:00:00 2001 From: Maksym Arutyunyan Date: Mon, 14 Jul 2025 10:47:30 +0200 Subject: [PATCH 3/3] fix typo --- tests/{api_confomrance.rs => api_conformance.rs} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename tests/{api_confomrance.rs => api_conformance.rs} (100%) diff --git a/tests/api_confomrance.rs b/tests/api_conformance.rs similarity index 100% rename from tests/api_confomrance.rs rename to tests/api_conformance.rs