From cae4b7cbc0d03c5389cae317e6072c7382b3a2ef Mon Sep 17 00:00:00 2001 From: "Matthew \"strager\" Glazar" Date: Wed, 17 Aug 2022 02:11:11 -0700 Subject: [PATCH] Fix typo in memory_resource docs --- include/boost/container/pmr/memory_resource.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/container/pmr/memory_resource.hpp b/include/boost/container/pmr/memory_resource.hpp index e99fd02..4187f05 100644 --- a/include/boost/container/pmr/memory_resource.hpp +++ b/include/boost/container/pmr/memory_resource.hpp @@ -54,7 +54,7 @@ class memory_resource { return this->do_deallocate(p, bytes, alignment); } //! Effects: Equivalent to - //! `return return do_is_equal(other);` + //! `return do_is_equal(other);` bool is_equal(const memory_resource& other) const BOOST_NOEXCEPT { return this->do_is_equal(other); }