Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
Fixes #1.
  • Loading branch information
foonathan authored May 29, 2018
1 parent d42f9a2 commit 6fb65fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ This makes it possible to have a fixed sized array, an array with small buffer o
#### Containers

* `array<T>`: the `std::vector<T>` of this library
* `bag<T>`: an `array<T>` where order of elements isn't imported, allows an `O(1)` erase
* `bag<T>`: an `array<T>` where order of elements isn't important, allows an `O(1)` erase
* `flat_(multi)set<Key>`: a sorted `array<Key>` with `O(log n)` lookup & co plus a superior interface to `std::set`
* `flat_(multi)map<Key, Value>`: a `flat_set<Key>` and an `array<Value>` for key-value-storage,
again with superior interface compared to `std::map`
Expand Down

0 comments on commit 6fb65fd

Please sign in to comment.