From 274ec17836bfbfd85159ef3c358031b31fc3c6ea Mon Sep 17 00:00:00 2001 From: Glen Fernandes Date: Sun, 15 Sep 2019 02:06:23 -0400 Subject: [PATCH] Even more documentation corrections --- doc/smart_ptr/allocate_unique.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/smart_ptr/allocate_unique.adoc b/doc/smart_ptr/allocate_unique.adoc index c563673..7e3026c 100644 --- a/doc/smart_ptr/allocate_unique.adoc +++ b/doc/smart_ptr/allocate_unique.adoc @@ -79,7 +79,7 @@ namespace boost { `// T is an array of unknown bounds` template std::unique_ptr> - allocate_unique(const A& a, std::size_t n); + allocate_unique_noinit(const A& a, std::size_t n); `// T is an array of known bounds` template @@ -246,7 +246,7 @@ Example:: `auto p = allocate_unique_noinit(a);` ``` template std::unique_ptr> - allocate_unique(const A& a, std::size_t n); + allocate_unique_noinit(const A& a, std::size_t n); ``` [none] * {blank}