Fix broken brief descriptions, unlink a word.

This commit is contained in:
Philipp Möller 2012-08-17 15:31:03 +00:00
parent ce13141d0b
commit 49c07b62d6
2 changed files with 8 additions and 11 deletions

View File

@ -612,20 +612,17 @@ void clear();
/// The following functions are mostly helpful for efficient debugging, since
/// their complexity is \f$ O(\sqrt{c.capacity()})\f$.
/// @{
/*!
returns whether `pos` is in the range [`c`.`begin()`, `c`.`end()`]
(`c`.`end()` included).
*/
/*!
* returns whether `pos` is in the range [`c`.\ `begin()`, `c`.\ `end()`] \(`c`.\ `end()` included\).
*/
bool owns(const_iterator pos);
/*!
returns whether `pos` is in the range [`c`.`begin()`, `c`.`end()`)
(`c`.`end()` excluded).
*/
/*!
* returns whether `pos` is in the range [`c`.\ `begin()`, `c`.\ `end()`) \(`c`.\ `end()` excluded\).
*/
bool owns_dereferencable(const_iterator pos);
/// @}

View File

@ -39,7 +39,7 @@ This used to simplify mutually pointed data structures like a halfedge
data structure for planar maps or polyhedral surfaces (the current design
does not need this anymore). The usual iterators are also available.
# Compact Container #
# %Compact Container #
The class `Compact_container<T, Allocator>` is an \stl like container
which provides a very compact storage for its elements. It achieves this goal