From 350b51f5b9379cbd994189f9f6b69f3c0ab0a134 Mon Sep 17 00:00:00 2001 From: Maxime Gimeno Date: Fri, 11 Jan 2019 11:45:59 +0100 Subject: [PATCH] fix typo --- Polygon/include/CGAL/Polygon_2.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Polygon/include/CGAL/Polygon_2.h b/Polygon/include/CGAL/Polygon_2.h index a5fef624cd1..8f6979f24c8 100644 --- a/Polygon/include/CGAL/Polygon_2.h +++ b/Polygon/include/CGAL/Polygon_2.h @@ -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();