Skip to content

Commit

Permalink
#3 typos
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Apr 16, 2023
1 parent f101838 commit b971c09
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
A faster alternative to Rust `HashMap`, for very small maps.

```rust
use micromap::MicroMap;
let mut m : MicroMap<u64, &str, 10> = MicroMap::new();
use micromap::Map;
let mut m : Map<u64, &str, 10> = Map::new();
m.insert(1, "foo");
m.insert(2, "bar");
assert_eq!(2, m.len());
Expand Down

0 comments on commit b971c09

Please sign in to comment.