diff --git a/include/boost/circular_buffer/space_optimized.hpp b/include/boost/circular_buffer/space_optimized.hpp
index e1dcafc..218b748 100644
--- a/include/boost/circular_buffer/space_optimized.hpp
+++ b/include/boost/circular_buffer/space_optimized.hpp
@@ -153,7 +153,7 @@ public:
#endif // #if defined(BOOST_CB_TEST)
- //!! See the circular_buffer source documentation.
+ //! See the circular_buffer source documentation.
/*!
\pre min_capacity() <= new_capacity
\note It is considered as a bug if the precondition is not met (i.e. if
@@ -175,7 +175,7 @@ public:
erase(begin(), end() - new_size);
}
- //!! See the circular_buffer source documentation.
+ //! See the circular_buffer source documentation.
/*!
\pre min_capacity() <= new_capacity
\note It is considered as a bug if the precondition is not met (i.e. if
@@ -387,7 +387,7 @@ public:
circular_buffer::swap(cb);
}
- //!! See the circular_buffer source documentation.
+ //! See the circular_buffer source documentation.
/*!
\warning The rules for iterator invalidation differ from the original
circular_buffer. See the
@@ -398,7 +398,7 @@ public:
circular_buffer::push_back(item);
}
- //!! See the circular_buffer source documentation.
+ //! See the circular_buffer source documentation.
/*!
\warning The rules for iterator invalidation differ from the original
circular_buffer. See the
@@ -409,7 +409,7 @@ public:
circular_buffer::push_front(item);
}
- //!! See the circular_buffer source documentation.
+ //! See the circular_buffer source documentation.
/*!
\warning The rules for iterator invalidation differ from the original
circular_buffer. See the
@@ -420,7 +420,7 @@ public:
check_high_capacity();
}
- //!! See the circular_buffer source documentation.
+ //! See the circular_buffer source documentation.
/*!
\warning The rules for iterator invalidation differ from the original
circular_buffer. See the
@@ -431,7 +431,7 @@ public:
check_high_capacity();
}
- //!! See the circular_buffer source documentation.
+ //! See the circular_buffer source documentation.
/*!
\warning The rules for iterator invalidation differ from the original
circular_buffer. See the
@@ -443,7 +443,7 @@ public:
return circular_buffer::insert(begin() + index, item);
}
- //!! See the circular_buffer source documentation.
+ //! See the circular_buffer source documentation.
/*!
\warning The rules for iterator invalidation differ from the original
circular_buffer. See the
@@ -455,7 +455,7 @@ public:
circular_buffer::insert(begin() + index, n, item);
}
- //!! See the circular_buffer source documentation.
+ //! See the circular_buffer source documentation.
/*!
\warning The rules for iterator invalidation differ from the original
circular_buffer. See the
@@ -466,7 +466,7 @@ public:
insert(pos, first, last, is_integral());
}
- //!! See the circular_buffer source documentation.
+ //! See the circular_buffer source documentation.
/*!
\warning The rules for iterator invalidation differ from the original
circular_buffer. See the
@@ -478,7 +478,7 @@ public:
return circular_buffer::rinsert(begin() + index, item);
}
- //!! See the circular_buffer source documentation.
+ //! See the circular_buffer source documentation.
/*!
\warning The rules for iterator invalidation differ from the original
circular_buffer. See the
@@ -490,7 +490,7 @@ public:
circular_buffer::rinsert(begin() + index, n, item);
}
- //!! See the circular_buffer source documentation.
+ //! See the circular_buffer source documentation.
/*!
\warning The rules for iterator invalidation differ from the original
circular_buffer. See the
@@ -501,7 +501,7 @@ public:
rinsert(pos, first, last, is_integral());
}
- //!! See the circular_buffer source documentation.
+ //! See the circular_buffer source documentation.
/*!
\warning The rules for iterator invalidation differ from the original
circular_buffer. See the
@@ -514,7 +514,7 @@ public:
return begin() + index;
}
- //!! See the circular_buffer source documentation.
+ //! See the circular_buffer source documentation.
/*!
\warning The rules for iterator invalidation differ from the original
circular_buffer. See the
@@ -527,7 +527,7 @@ public:
return begin() + index;
}
- //!! See the circular_buffer source documentation.
+ //! See the circular_buffer source documentation.
/*!
\warning The rules for iterator invalidation differ from the original
circular_buffer. See the
@@ -540,7 +540,7 @@ public:
return begin() + index;
}
- //!! See the circular_buffer source documentation.
+ //! See the circular_buffer source documentation.
/*!
\warning The rules for iterator invalidation differ from the original
circular_buffer. See the