mirror of https://github.com/CGAL/cgal
fixed typo in documentation
This commit is contained in:
parent
731f291bad
commit
d856f80d79
|
|
@ -152,7 +152,7 @@ section:
|
||||||
|
|
||||||
\ccMethod{template <class InputIterator>
|
\ccMethod{template <class InputIterator>
|
||||||
Halfedge_handle add_facet( InputIterator first, InputIterator beyond);}{
|
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()}.
|
value in the range \ccc{[first,beyond)}, and a call to \ccc{end_facet()}.
|
||||||
Returns the return value of \ccc{end_facet()}.
|
Returns the return value of \ccc{end_facet()}.
|
||||||
\ccPrecond The value type of \ccc{InputIterator} is \ccc{std::size_t}.
|
\ccPrecond The value type of \ccc{InputIterator} is \ccc{std::size_t}.
|
||||||
|
|
|
||||||
|
|
@ -303,7 +303,7 @@ public:
|
||||||
|
|
||||||
template <class InputIterator>
|
template <class InputIterator>
|
||||||
Halfedge_handle add_facet( InputIterator first, InputIterator beyond) {
|
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().
|
// value type, and end_facet().
|
||||||
begin_facet();
|
begin_facet();
|
||||||
for ( ; ! m_error && first != beyond; ++first)
|
for ( ; ! m_error && first != beyond; ++first)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue