Skip to content

Commit e7af582

Browse files
committed
WIP
1 parent 8f8cc75 commit e7af582

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ experience in Zig.
4040
Ordered provides two main interfaces for working with sorted collections: sorted maps and sorted sets.
4141
At the moment, Ordered supports the following implementations of these interfaces:
4242

43-
#### Maps (Key-value)
43+
#### Maps (key-value)
4444

4545
| Type | Data Structure | Insert | Search | Delete | Space |
4646
|--------------------|------------------------------------------------------|--------------|--------------|--------------|----------------|
@@ -49,7 +49,7 @@ At the moment, Ordered supports the following implementations of these interface
4949
| `TrieMap` | [Trie](https://en.wikipedia.org/wiki/Trie) | $O(m)$ | $O(m)$ | $O(m)$ | $O(n \cdot m)$ |
5050
| `CartesianTreeMap` | [Treap](https://en.wikipedia.org/wiki/Treap) | $O(\log n)$† | $O(\log n)$† | $O(\log n)$† | $O(n)$ |
5151

52-
#### Sets (Value-only)
52+
#### Sets (value-only)
5353

5454
| Type | Data Structure | Insert | Search | Delete | Space |
5555
|-------------------|----------------------------------------------------------------|-------------|-------------|-------------|--------|

0 commit comments

Comments
 (0)