Skip to content

Commit

Permalink
Fix tiny doc issues
Browse files Browse the repository at this point in the history
  • Loading branch information
MaelRL committed May 2, 2024
1 parent 4f5bcc6 commit 6727f78
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions AABB_tree/include/CGAL/AABB_traits_2.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 <typename GeomTraits, bool ray_intersection_geom_traits=Is_ray_intersection_geomtraits_2<GeomTraits>::value>
struct AABB_traits_intersection_base_2;
Expand Down Expand Up @@ -74,7 +74,7 @@ struct AABB_traits_intersection_base_2<GeomTraits,true>{
}

// 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;
Expand Down
2 changes: 1 addition & 1 deletion AABB_tree/include/CGAL/AABB_traits_3.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ struct AABB_traits_intersection_base_3<GeomTraits, true> {
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;
Expand Down

0 comments on commit 6727f78

Please sign in to comment.