From 866c58a879f489dd2acb8cb56314d42e472fc428 Mon Sep 17 00:00:00 2001 From: joaquintides Date: Sun, 12 Feb 2023 17:35:02 +0100 Subject: [PATCH] typo --- doc/unordered/unordered_node_map.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/unordered/unordered_node_map.adoc b/doc/unordered/unordered_node_map.adoc index ed0bc5bc..6a43bb92 100644 --- a/doc/unordered/unordered_node_map.adoc +++ b/doc/unordered/unordered_node_map.adoc @@ -10,7 +10,7 @@ being node-based, it provides pointer/iterator stability and node handling funct Its performance lies between those of `boost::unordered_map` and `boost::unordered_flat_map`. As a result of its using open addressing, the interface of `boost::unordered_node_map` deviates in -a number of aspects from that of `boost::unordered_node_map`/`std::unordered_node_map`: +a number of aspects from that of `boost::unordered_map`/`std::unordered_map`: - `begin()` is not constant-time. - `erase(iterator)` returns `void`.