Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions src/vec/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<u8>);
impl crate::Storable for BuggyStruct {
Expand Down
File renamed without changes.