From beea3f2fdae490da87eb42e2fa101579898cde86 Mon Sep 17 00:00:00 2001 From: Sven Oesau Date: Fri, 12 Jan 2024 19:01:03 +0100 Subject: [PATCH] fixing comment for Node_index_range removing Node_range [skip ci] --- Orthtree/include/CGAL/Orthtree.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Orthtree/include/CGAL/Orthtree.h b/Orthtree/include/CGAL/Orthtree.h index 8a4fa2635f0..9376af0b428 100644 --- a/Orthtree/include/CGAL/Orthtree.h +++ b/Orthtree/include/CGAL/Orthtree.h @@ -137,10 +137,10 @@ public: using Split_predicate = std::function; /*! - * \brief A model of `ConstRange` whose value type is `Node_index`. Its iterator type is `ForwardIterator`. + * \brief A model of `ConstRange` whose value type is `Node_index` and its iterator type is `ForwardIterator`. */ #ifdef DOXYGEN_RUNNING - using Node_range = unspecified_type; + using Node_index_range = unspecified_type; #else using Node_index_range = boost::iterator_range>;