regular triangulation docs: fix all vertex iterators (#9093)

## Summary of Changes

order of begin and end iterator was wrong and description did not match
This commit is contained in:
Sebastien Loriot 2025-10-17 10:07:30 +02:00 committed by GitHub
commit 95c7d809f7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -436,12 +436,12 @@ const;
/*!
starts at an arbitrary unhidden vertex.
*/
All_vertices_iterator all_vertices_end() const;
All_vertices_iterator all_vertices_begin() const;
/*!
past the end iterator.
*/
All_vertices_iterator all_vertices_begin() const;
All_vertices_iterator all_vertices_end() const;
/// @}