From 15c884438c30d9ba1c4b950f1eeef34f641eab5b Mon Sep 17 00:00:00 2001 From: Glen Fernandes Date: Sat, 4 Dec 2021 14:38:18 -0500 Subject: [PATCH] Correct note in documentation --- doc/allocator_traits.qbk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/allocator_traits.qbk b/doc/allocator_traits.qbk index 6372cbb..f16cc70 100644 --- a/doc/allocator_traits.qbk +++ b/doc/allocator_traits.qbk @@ -109,7 +109,7 @@ static void construct(A& a, T* p, Args&&... args);`] # The member `rebind_alloc` is not provided for parity with C++03 where it is unimplementable. Instead of `allocator_traits::rebind_alloc` you can express the same with `allocator_traits::rebind_traits::allocator_type` -or more simply with `allocator_rebind_t`. +or more simply with `allocator_rebind_t`. [endsect]