Skip to content

Commit b0c4723

Browse files
authored
chore: improve wording (#370)
1 parent cb30ee2 commit b0c4723

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Stable structures are able to work directly in stable memory because each data s
4040
its own memory.
4141
When initializing a stable structure, a memory is provided that the data structure can use to store its data.
4242

43-
Here's a basic examples:
43+
Here are some basic examples:
4444

4545
### Example: BTreeMap
4646

src/vec/tests.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -249,8 +249,8 @@ fn test_iter_count() {
249249
}
250250
}
251251

252-
// A struct with a bugg implementation of storable where the max_size can
253-
// smaller than the serialized size.
252+
// A struct with a buggy implementation of `Storable` where the max_size can
253+
// be smaller than the serialized size.
254254
#[derive(Clone, Ord, PartialOrd, Eq, PartialEq)]
255255
struct BuggyStruct(Vec<u8>);
256256
impl crate::Storable for BuggyStruct {

0 commit comments

Comments
 (0)