Minor fix, scoped_ptr in the intro should've been shared_ptr.

[SVN r18745]
This commit is contained in:
Peter Dimov
2003-06-09 18:25:41 +00:00
parent 77c629b6e4
commit 11cddbbb45

View File

@ -18,7 +18,7 @@
<h1>Smart Pointer Library</h1>
<p>The smart pointer library includes five smart pointer class templates. Smart
pointers ease the management of memory dynamically allocated with C++ <b>new</b>
expressions. In addition, <b>scoped_ptr</b> can ease the management of memory
expressions. In addition, <b>shared_ptr</b> can ease the management of memory
dynamically allocated in other ways.</p>
<ul>
<li>