Fix typo in docs comparing open to closed adressing maps

This commit is contained in:
Chris Elrod
2024-04-30 01:13:00 -04:00
committed by GitHub
parent 73582be563
commit 5800b0630d

View File

@ -12,7 +12,7 @@ array, and insertions into an already occupied bucket are diverted to available
vicinity of the original position. This type of data layout is known as _open addressing_.
As a result of its using open addressing, the interface of `boost::unordered_flat_map` deviates in
a number of aspects from that of `boost::unordered_flat_map`/`std::unordered_flat_map`:
a number of aspects from that of `boost::unordered_map`/`std::unordered_map`:
- `value_type` must be move-constructible.
- Pointer stability is not kept under rehashing.