diff --git a/scoped_array.htm b/scoped_array.htm index 5e80f62..0fb8932 100644 --- a/scoped_array.htm +++ b/scoped_array.htm @@ -34,7 +34,7 @@

Synopsis

namespace boost {
 
-  template<class T> class scoped_array : noncopyable {
+  template<class T> class scoped_array : noncopyable {
 
     public:
       typedef T element_type;
@@ -100,12 +100,11 @@
 		

Equivalent to a.swap(b). Matches the interface of std::swap. Provided as an aid to generic programming.


-

Revised - 1 February 2002

+

Revised 09 January 2003

Copyright 1999 Greg Colvin and Beman Dawes. Copyright 2002 Darin Adler. Permission to copy, use, modify, sell and distribute this document is granted provided this copyright notice appears in all copies. This document is provided "as is" without express or implied warranty, and with no claim as to its suitability for any purpose.

- + \ No newline at end of file diff --git a/scoped_ptr.htm b/scoped_ptr.htm index 148cd42..8af72c4 100644 --- a/scoped_ptr.htm +++ b/scoped_ptr.htm @@ -34,7 +34,7 @@

Synopsis

namespace boost {
 
-  template<class T> class scoped_ptr : noncopyable {
+  template<class T> class scoped_ptr : noncopyable {
 
    public:
      typedef T element_type;
@@ -165,12 +165,11 @@ Buckle my shoe
given context. Use std::auto_ptr where transfer of ownership is required. (supplied by Dave Abrahams)


-

Revised - 17 September 2002

+

Revised 09 January 2003

Copyright 1999 Greg Colvin and Beman Dawes. Copyright 2002 Darin Adler. Copyright 2002 Peter Dimov. Permission to copy, use, modify, sell and distribute this document is granted provided this copyright notice appears in all copies. This document is provided "as is" without express or implied warranty, and with no claim as to its suitability for any purpose.

- + \ No newline at end of file diff --git a/shared_array.htm b/shared_array.htm index 26a6dab..8a7cc34 100644 --- a/shared_array.htm +++ b/shared_array.htm @@ -26,8 +26,8 @@

A shared_ptr to a std::vector is an alternative to a shared_array that is a bit heavier duty but far more flexible.

The class template is parameterized on T, the type of the object pointed - to. T must meet the smart pointer - common requirements.

+ to. T must meet the smart pointer + common requirements.

Synopsis

namespace boost {
 
@@ -168,12 +168,11 @@ template<class T>
 		

Equivalent to a.swap(b). Matches the interface of std::swap. Provided as an aid to generic programming.


-

Revised - 8 February 2002

+

Revised 09 January 2003

Copyright 1999 Greg Colvin and Beman Dawes. Copyright 2002 Darin Adler. Permission to copy, use, modify, sell and distribute this document is granted provided this copyright notice appears in all copies. This document is provided "as is" without express or implied warranty, and with no claim as to its suitability for any purpose.

- + \ No newline at end of file