This commit is contained in:
Maxime Gimeno 2019-01-11 11:45:59 +01:00
parent 3b0d2194ad
commit 350b51f5b9
1 changed files with 2 additions and 2 deletions

View File

@ -483,7 +483,7 @@ class Polygon_2 {
{
return container().begin();
}
/// Returns an iterator to the element after the lastvertex of the polygon.
/// Returns an iterator to the element after the last vertex of the polygon.
typename Container_P::iterator end()
{
return container().end();
@ -495,7 +495,7 @@ class Polygon_2 {
return container().begin();
}
/// Returns a const iterator to the element after the lastvertex of the polygon.
/// Returns a const iterator to the element after the last vertex of the polygon.
const typename Container_P::const_iterator end() const
{
return container().end();