Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r71558 - sandbox/block_ptr/libs/smart_ptr/doc
From: phil_at_[hidden]
Date: 2011-04-27 23:28:04


Author: pbouchard
Date: 2011-04-27 23:28:04 EDT (Wed, 27 Apr 2011)
New Revision: 71558
URL: http://svn.boost.org/trac/boost/changeset/71558

Log:
* Typos
Text files modified:
   sandbox/block_ptr/libs/smart_ptr/doc/overview.html | 2 +-
   sandbox/block_ptr/libs/smart_ptr/doc/tutorial.html | 2 +-
   2 files changed, 2 insertions(+), 2 deletions(-)

Modified: sandbox/block_ptr/libs/smart_ptr/doc/overview.html
==============================================================================
--- sandbox/block_ptr/libs/smart_ptr/doc/overview.html (original)
+++ sandbox/block_ptr/libs/smart_ptr/doc/overview.html 2011-04-27 23:28:04 EDT (Wed, 27 Apr 2011)
@@ -90,7 +90,7 @@
   <p>Block Pointer is a memory manager on top of reference counting and is also able to detect outright unreferenced cyclic blocks of memory. It is a fast as
   the popular smart pointer <i>boost::shared_ptr&#60;T&#62;</i> but is not requiring a bigger memory usage per pointer (2 times <i>sizeof(void *)</i>), given its
   ability to detect cyclic blocks of memory with no coding overhead. In terms of programing requirements, <i>block_ptr&#60;T&#62;</i> simply requires to point
- to instantiations of the <i>mm&#60;T&#62;</i> type. For example:</p>
+ to instantiations of the <i>block&#60;T&#62;</i> type. For example:</p>
   <pre>
   block_ptr&#60;int&#62; v = new block&#60;int&#62;(11);
   </pre>

Modified: sandbox/block_ptr/libs/smart_ptr/doc/tutorial.html
==============================================================================
--- sandbox/block_ptr/libs/smart_ptr/doc/tutorial.html (original)
+++ sandbox/block_ptr/libs/smart_ptr/doc/tutorial.html 2011-04-27 23:28:04 EDT (Wed, 27 Apr 2011)
@@ -74,7 +74,7 @@
   block_ptr&#60;int&#62; p = new block&#60;int&#62;(11);
   </pre>
 
- <p>Will instantiate a special object <i>mm&#60;int&#62;</i> having an integer as one of its member. The pointer to the object is then passed to the
+ <p>Will instantiate a special object <i>block&#60;int&#62;</i> having an integer as one of its member. The pointer to the object is then passed to the
   <i>block_ptr&#60;int&#62;</i> that will manage its existence and later destroy and deallocate it when it is found to be no longer referenced.<p>
 
   <p>Variants of the object type can also be used. In order to instantiate an array of integer for example, all that will be needed is to change the


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk