From b3ae844792a74ac45b2b9500f237727bd031f02b Mon Sep 17 00:00:00 2001 From: Pieter Hijma Date: Mon, 24 Mar 2025 14:46:31 +0100 Subject: [PATCH] [Doc] Fix CAM documentation problems - Fix nested comments - Fix section labels --- src/Mod/CAM/App/ParamsHelper.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Mod/CAM/App/ParamsHelper.h b/src/Mod/CAM/App/ParamsHelper.h index 32ecb7237b..95f4d23243 100644 --- a/src/Mod/CAM/App/ParamsHelper.h +++ b/src/Mod/CAM/App/ParamsHelper.h @@ -27,7 +27,7 @@ * \ingroup PATH * Collections of macros for managing groups of parameters. * - * \section Motivation + * \section motivation_groups_params Motivation * * For an application like FreeCAD, there are often cases where the same set of * parameters are referred in dozons of different places. The macros here is @@ -61,7 +61,7 @@ * /src/Mod/CAM/App.CMakeFiles/Path.dir/Area.cpp.i * \endcode * - * \section Introduction of Boost.Preprocessor + * \section intro_boost_preproc Introduction of Boost.Preprocessor * * The macros here make heavy use of the awesome * [Boost.Preprocessor](http://www.boost.org/libs/preprocessor/) (short for @@ -1017,6 +1017,7 @@ * if(name1.isTouched()) return 1; * if(name2.isTouched()) return 1; * ... + * \endcode * \ingroup ParamProperty */ #define PARAM_PROP_TOUCHED(_seq) PARAM_FOREACH(PARAM_PROP_TOUCHED_, _seq)