$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r81867 - trunk/libs/smart_ptr
From: glenfe_at_[hidden]
Date: 2012-12-11 17:44:57
Author: glenfe
Date: 2012-12-11 17:44:57 EST (Tue, 11 Dec 2012)
New Revision: 81867
URL: http://svn.boost.org/trac/boost/changeset/81867
Log:
Documentation corrections: make_shared_array.html
Text files modified: 
   trunk/libs/smart_ptr/make_shared_array.html |     8 ++++----                                
   1 files changed, 4 insertions(+), 4 deletions(-)
Modified: trunk/libs/smart_ptr/make_shared_array.html
==============================================================================
--- trunk/libs/smart_ptr/make_shared_array.html	(original)
+++ trunk/libs/smart_ptr/make_shared_array.html	2012-12-11 17:44:57 EST (Tue, 11 Dec 2012)
@@ -205,17 +205,17 @@
     <pre>template<typename T>
     shared_ptr<T[]> make_shared_noinit(size_t size);
 template<typename T, typename A>
-    shared_ptr<T[]> make_shared_noinit(const A& allocator, size_t size);</pre>
+    shared_ptr<T[]> allocate_shared_noinit(const A& allocator, size_t size);</pre>
     <blockquote>
-      <p><b>Description:</b> This overload does not perform value 
+      <p><b>Description:</b> These overloads do not perform any value 
         initialization of elements.</p>
     </blockquote>
     <pre>template<typename T>
     shared_ptr<T[N]> make_shared_noinit();
 template<typename T, typename A>
-    shared_ptr<T[N]> make_shared_noinit(const A& allocator);</pre>
+    shared_ptr<T[N]> allocate_shared_noinit(const A& allocator);</pre>
     <blockquote>
-      <p><b>Description:</b> This overload of the utility above is used for a 
+      <p><b>Description:</b> These overloads of the utilities above are for a 
         fixed size array.</p>
     </blockquote>
     <h2><a name="example">Example</a></h2>