fixed typo in documentation

This commit is contained in:
Andreas Fabri 2008-06-24 19:00:46 +00:00
parent 731f291bad
commit d856f80d79
2 changed files with 2 additions and 2 deletions

View File

@ -152,7 +152,7 @@ section:
\ccMethod{template <class InputIterator>
Halfedge_handle add_facet( InputIterator first, InputIterator beyond);}{
is a synonym for \ccc{begin_facet()}, a call to \ccc{add_facet()} for each
is a synonym for \ccc{begin_facet()}, a call to \ccc{add_vertex_to_facet()} for each
value in the range \ccc{[first,beyond)}, and a call to \ccc{end_facet()}.
Returns the return value of \ccc{end_facet()}.
\ccPrecond The value type of \ccc{InputIterator} is \ccc{std::size_t}.

View File

@ -303,7 +303,7 @@ public:
template <class InputIterator>
Halfedge_handle add_facet( InputIterator first, InputIterator beyond) {
// synonym for begin_facet(), a call to add_facet() for each iterator
// synonym for begin_facet(), a call to add_vertex_to_facet() for each iterator
// value type, and end_facet().
begin_facet();
for ( ; ! m_error && first != beyond; ++first)