From 7b5d6e7c29e5bb6d795f369f63851df74716cd9e Mon Sep 17 00:00:00 2001 From: Christian Mazakas Date: Sun, 19 Feb 2023 21:17:27 -0800 Subject: [PATCH] Fix typos in code comments in foa --- include/boost/unordered/detail/foa.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/unordered/detail/foa.hpp b/include/boost/unordered/detail/foa.hpp index 79aee990..f06d7d4a 100644 --- a/include/boost/unordered/detail/foa.hpp +++ b/include/boost/unordered/detail/foa.hpp @@ -1387,8 +1387,8 @@ public: BOOST_FORCEINLINE std::pair emplace(Args&&... args) { /* We dispatch based on whether or not the value_type is constructible from - * an rvalue refernce to the deduced emplace_type. We do this specifically - * for the csae of the node-based containers. To this end, we're able to + * an rvalue reference of the deduced emplace_type. We do this specifically + * for the case of the node-based containers. To this end, we're able to * avoid allocating a node when a duplicate element is attempted to be * inserted. For immovable types, we instead dispatch to the routine that * unconditionally allocates via `type_policy::construct()`.