diff --git a/README.md b/README.md index fb268cee..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's a basic examples: +Here are some 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 { 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