From 1fd27e1cb9d896f7b5a1a4e2ea131010cfa33260 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Thu, 19 Feb 2015 16:00:55 +0100 Subject: [PATCH] use backticking --- Point_set_shape_detection_3/include/CGAL/Shape_detection_3.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Point_set_shape_detection_3/include/CGAL/Shape_detection_3.h b/Point_set_shape_detection_3/include/CGAL/Shape_detection_3.h index 47c05888a31..28402c139e7 100644 --- a/Point_set_shape_detection_3/include/CGAL/Shape_detection_3.h +++ b/Point_set_shape_detection_3/include/CGAL/Shape_detection_3.h @@ -256,7 +256,7 @@ et al. in 2007 \cgalCite{Schnabel07}. This function registers a shape type for detection. */ template - void add_shape_factory(Shape_factory *factory///< Factory for shape type defined by 'Shape_factory<"shape_type">' + void add_shape_factory(Shape_factory *factory///< Factory for shape type defined by `Shape_factory` ) { m_shapeFactories.push_back(factory); } @@ -267,7 +267,7 @@ et al. in 2007 \cgalCite{Schnabel07}. /// @{ /*! This function initiates the shape detection. Shape types to be detected - must be registered before with 'add_shape_factory'. + must be registered before with `add_shape_factory()`. */ void detect( const Parameters &options = Parameters()///< Parameters for shape detection.