From 5c093c24914c453df6dc8fa02f37b192e12762ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ivan=20Pa=C4=91en?= <49401914+ipadjen@users.noreply.github.com> Date: Thu, 28 Sep 2023 21:11:44 -0600 Subject: [PATCH] Fix doc issue --- .../doc/Polygon_mesh_processing/Concepts/PMPSizingField.h | 2 +- .../CGAL/Polygon_mesh_processing/Adaptive_sizing_field.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Polygon_mesh_processing/doc/Polygon_mesh_processing/Concepts/PMPSizingField.h b/Polygon_mesh_processing/doc/Polygon_mesh_processing/Concepts/PMPSizingField.h index c9e66b1d274..b27f3a536a9 100644 --- a/Polygon_mesh_processing/doc/Polygon_mesh_processing/Concepts/PMPSizingField.h +++ b/Polygon_mesh_processing/doc/Polygon_mesh_processing/Concepts/PMPSizingField.h @@ -37,7 +37,7 @@ typedef unspecified_type FT; std::optional is_too_long(const halfedge_descriptor h, const PolygonMesh& pmesh) const; -/// a function controlling edge split and edge collapse, +/// a function controlling edge split and edge collapse, /// returning the squared distance between the points of `va` and `vb` /// if an edge between `va` and `vb` would be too long, and `std::nullopt` otherwise. std::optional is_too_long(const vertex_descriptor va, diff --git a/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/Adaptive_sizing_field.h b/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/Adaptive_sizing_field.h index 3b9fd94f189..8f5e8079de6 100644 --- a/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/Adaptive_sizing_field.h +++ b/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/Adaptive_sizing_field.h @@ -70,7 +70,7 @@ public: /// \name Creation /// @{ /*! - * constructor + * Constructor * * @tparam FaceRange range of `boost::graph_traits::%face_descriptor`, * model of `Range`. Its iterator type is `ForwardIterator`. @@ -78,7 +78,7 @@ public: * * @param tol the error tolerance, used together with curvature to derive target edge length. * Lower tolerance values will result in shorter mesh edges. - * @param edge_len_min_max contains the bounds for minimum and maximum + * @param edge_len_min_max contains the bounds for minimum and maximum * edge lengths * @param face_range the range of triangular faces defining one or several surface patches * to be remeshed. It should be the same as the range of faces passed to `isotropic_remeshing()`.