From 5800b0630dbcceb114430711febeb1244839a247 Mon Sep 17 00:00:00 2001 From: Chris Elrod Date: Tue, 30 Apr 2024 01:13:00 -0400 Subject: [PATCH] Fix typo in docs comparing open to closed adressing `map`s --- doc/unordered/unordered_flat_map.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/unordered/unordered_flat_map.adoc b/doc/unordered/unordered_flat_map.adoc index 07f90d0e..ab31c447 100644 --- a/doc/unordered/unordered_flat_map.adoc +++ b/doc/unordered/unordered_flat_map.adoc @@ -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.