From 6727f780e82db755432cf5277c71cc5b6cf312c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mael=20Rouxel-Labb=C3=A9?= Date: Thu, 2 May 2024 11:00:09 +0200 Subject: [PATCH] Fix tiny doc issues --- AABB_tree/include/CGAL/AABB_traits_2.h | 4 ++-- AABB_tree/include/CGAL/AABB_traits_3.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/AABB_tree/include/CGAL/AABB_traits_2.h b/AABB_tree/include/CGAL/AABB_traits_2.h index 673ead172fbb..fe863e2d0084 100644 --- a/AABB_tree/include/CGAL/AABB_traits_2.h +++ b/AABB_tree/include/CGAL/AABB_traits_2.h @@ -37,7 +37,7 @@ namespace CGAL { namespace internal{ namespace AABB_tree { -// AABB_traits_intersection_base brings in the Intersection_distance predicate, +// AABB_traits_intersection_base_2 brings in the Intersection_distance predicate, // if GeomTraits is a model RayIntersectionGeomTraits. template ::value> struct AABB_traits_intersection_base_2; @@ -74,7 +74,7 @@ struct AABB_traits_intersection_base_2{ } // Defining Bounding_box and other types from the full AABB_traits_2 - // here is might seem strange, but otherwise we would need to use + // here might seem strange, but otherwise we would need to use // CRTP to get access to the derived class, which would bloat the // code more. typedef typename CGAL::Bbox_2 Bounding_box; diff --git a/AABB_tree/include/CGAL/AABB_traits_3.h b/AABB_tree/include/CGAL/AABB_traits_3.h index 52757a358472..30a3fa77cd3f 100644 --- a/AABB_tree/include/CGAL/AABB_traits_3.h +++ b/AABB_tree/include/CGAL/AABB_traits_3.h @@ -57,7 +57,7 @@ struct AABB_traits_intersection_base_3 { typedef typename GeomTraits::FT FT; // Defining Bounding_box and other types from the full AABB_traits_3 - // here is might seem strange, but otherwise we would need to use + // here might seem strange, but otherwise we would need to use // CRTP to get access to the derived class, which would bloat the // code more. typedef typename CGAL::Bbox_3 Bounding_box;