diff --git a/Combinatorial_map/doc/Combinatorial_map/Concepts/Dart.h b/Combinatorial_map/doc/Combinatorial_map/Concepts/Dart.h index cd70ace8cfd..03f2b3a8b12 100644 --- a/Combinatorial_map/doc/Combinatorial_map/Concepts/Dart.h +++ b/Combinatorial_map/doc/Combinatorial_map/Concepts/Dart.h @@ -7,7 +7,7 @@ The concept `Dart` defines a d-dimensional dart for generic maps. A dart \cgalHeading{Creation} -A dart `d0` is never constructed directly, but always created within a generic map `bm` by using the method \link GenericMap::create_dart `bm.create_dart()`\endlink. A new dart is initialized to be i-free, \f$ \forall \f$ i: 0 \f$ \leq \f$ i \f$ \leq \f$ dimension, and having all its attribute handles initialized to `NULL`, for each non `void` attribute. +A dart `d0` is never constructed directly, but always created within a generic map `bm` by using the method \link GenericMap::create_dart `bm.create_dart()`\endlink. A new dart is initialized to be i-free, \f$ \forall \f$ i: 0 \f$ \leq \f$ i \f$ \leq \f$ `#dimension`, and having all its attribute handles initialized to `NULL`, for each non `void` attribute. \cgalHasModel \link CGAL::Combinatorial_map_dart `CGAL::Combinatorial_map_dart`\endlink \cgalHasModel \link CGAL::Generalized_map_dart `CGAL::Generalized_map_dart`\endlink @@ -41,14 +41,14 @@ typedef unspecified_type Dart_handle; typedef unspecified_type Dart_const_handle; /*! -`Attribute_handle::%type` is a handle to `i`-attributes, with 0 \f$ \leq \f$ `i` \f$ \leq \f$ `dimension`. Must be a model of `Handle` concept. +`Attribute_handle::%type` is a handle to `i`-attributes, with 0 \f$ \leq \f$ `i` \f$ \leq \f$ `#dimension`. Must be a model of `Handle` concept. \note It can be implemented using a nested template class. */ template using Attribute_handle = unspecified_type; /*! -`Attribute_const_handle::%type` is a const handle to `i`-attributes, with 0 \f$ \leq \f$ `i` \f$ \leq \f$ `dimension`. Must be a model of `ConstHandle` concept. +`Attribute_const_handle::%type` is a const handle to `i`-attributes, with 0 \f$ \leq \f$ `i` \f$ \leq \f$ `#dimension`. Must be a model of `ConstHandle` concept. \note It can be implemented using a nested template class. */ template @@ -62,14 +62,14 @@ using Attribute_const_handle = unspecified_type; /*! To simplify a future implementation, it is recommended to not use this function and to use \link GenericMap::attribute `bm.attribute(dh)`\endlink instead. Returns a handle to the i-attribute associated to the dart. -\pre 0 \f$ \leq \f$ i \f$ \leq \f$ dimension, and i-attributes are non `void`. +\pre 0 \f$ \leq \f$ i \f$ \leq \f$ `#dimension`, and i-attributes are non `void`. */ template Attribute_handle::type attribute(); /*! To simplify a future implementation, it is recommended to not use this function and to use \link GenericMap::attribute `bm.attribute(dh)`\endlink instead. Returns a const handle to the i-attribute associated to the dart, when the dart is const. -\pre 0 \f$ \leq \f$ i \f$ \leq \f$ dimension, and i-attributes are non `void`. +\pre 0 \f$ \leq \f$ i \f$ \leq \f$ `#dimension`, and i-attributes are non `void`. */ template Attribute_const_handle::type attribute() const;