diff --git a/include/boost/container/string.hpp b/include/boost/container/string.hpp
index 2a64cec..7b5e040 100644
--- a/include/boost/container/string.hpp
+++ b/include/boost/container/string.hpp
@@ -1368,9 +1368,6 @@ class basic_string
//! Requires: p is a valid iterator on *this.
//!
//! Effects: Inserts n copies of c before the character referred to by p.
- //!
- //! Returns: An iterator which refers to the copy of the first
- //! inserted character, or p if n == 0.
void insert(const_iterator p, size_type n, CharT c)
{
this->insert(p, cvalue_iterator(c, n), cvalue_iterator());
@@ -1379,9 +1376,6 @@ class basic_string
//! Requires: p is a valid iterator on *this. [first,last) is a valid range.
//!
//! Effects: Equivalent to insert(p - begin(), basic_string(first, last)).
- //!
- //! Returns: An iterator which refers to the copy of the first
- //! inserted character, or p if first == last.
template
void insert(const_iterator p, InputIter first, InputIter last)
{