Index: boost/container/slist.hpp =================================================================== --- boost/container/slist.hpp (revision 86799) +++ boost/container/slist.hpp (working copy) @@ -1306,7 +1306,7 @@ //! Requires: p must be a valid iterator of *this. //! - //! Effects: Erases the element at p p. + //! Effects: Erases the element at p. //! //! Throws: Nothing. //! @@ -1360,7 +1360,7 @@ //! this' allocator and x's allocator shall compare equal //! //! Effects: Transfers the value pointed by i, from list x to this list, - //! before the the element pointed by p. No destructors or copy constructors are called. + //! before the element pointed by p. No destructors or copy constructors are called. //! If p == i or p == ++i, this function is a null operation. //! //! Throws: Nothing @@ -1377,7 +1377,7 @@ //! this' allocator and x's allocator shall compare equal. //! //! Effects: Transfers the value pointed by i, from list x to this list, - //! before the the element pointed by p. No destructors or copy constructors are called. + //! before the element pointed by p. No destructors or copy constructors are called. //! If p == i or p == ++i, this function is a null operation. //! //! Throws: Nothing @@ -1393,7 +1393,7 @@ //! by this list. first and last must point to elements contained in list x. //! //! Effects: Transfers the range pointed by first and last from list x to this list, - //! before the the element pointed by p. No destructors or copy constructors are called. + //! before the element pointed by p. No destructors or copy constructors are called. //! this' allocator and x's allocator shall compare equal. //! //! Throws: Nothing @@ -1411,7 +1411,7 @@ //! this' allocator and x's allocator shall compare equal //! //! Effects: Transfers the range pointed by first and last from list x to this list, - //! before the the element pointed by p. No destructors or copy constructors are called. + //! before the element pointed by p. No destructors or copy constructors are called. //! //! Throws: Nothing //! Index: boost/container/list.hpp =================================================================== --- boost/container/list.hpp (revision 86799) +++ boost/container/list.hpp (working copy) @@ -370,7 +370,7 @@ return this->assign(cvalue_iterator(val, n), cvalue_iterator()); } - //! Effects: Assigns the the range [first, last) to *this. + //! Effects: Assigns the range [first, last) to *this. //! //! Throws: If memory allocation throws or //! T's constructor from dereferencing InpIt throws. @@ -867,7 +867,7 @@ //! Requires: p must be a valid iterator of *this. //! - //! Effects: Erases the element at p p. + //! Effects: Erases the element at p. //! //! Throws: Nothing. //! @@ -946,7 +946,7 @@ //! this' allocator and x's allocator shall compare equal //! //! Effects: Transfers the value pointed by i, from list x to this list, - //! before the the element pointed by p. No destructors or copy constructors are called. + //! before the element pointed by p. No destructors or copy constructors are called. //! If p == i or p == ++i, this function is a null operation. //! //! Throws: Nothing @@ -967,7 +967,7 @@ //! this' allocator and x's allocator shall compare equal. //! //! Effects: Transfers the value pointed by i, from list x to this list, - //! before the the element pointed by p. No destructors or copy constructors are called. + //! before the element pointed by p. No destructors or copy constructors are called. //! If p == i or p == ++i, this function is a null operation. //! //! Throws: Nothing @@ -984,7 +984,7 @@ //! this' allocator and x's allocator shall compare equal //! //! Effects: Transfers the range pointed by first and last from list x to this list, - //! before the the element pointed by p. No destructors or copy constructors are called. + //! before the element pointed by p. No destructors or copy constructors are called. //! //! Throws: Nothing //! @@ -1003,7 +1003,7 @@ //! this' allocator and x's allocator shall compare equal. //! //! Effects: Transfers the range pointed by first and last from list x to this list, - //! before the the element pointed by p. No destructors or copy constructors are called. + //! before the element pointed by p. No destructors or copy constructors are called. //! //! Throws: Nothing //! @@ -1019,7 +1019,7 @@ //! n == std::distance(first, last). this' allocator and x's allocator shall compare equal //! //! Effects: Transfers the range pointed by first and last from list x to this list, - //! before the the element pointed by p. No destructors or copy constructors are called. + //! before the element pointed by p. No destructors or copy constructors are called. //! //! Throws: Nothing //! @@ -1040,7 +1040,7 @@ //! n == std::distance(first, last). this' allocator and x's allocator shall compare equal //! //! Effects: Transfers the range pointed by first and last from list x to this list, - //! before the the element pointed by p. No destructors or copy constructors are called. + //! before the element pointed by p. No destructors or copy constructors are called. //! //! Throws: Nothing //!