From eb0613daf61942cfaa4a9dd1952d338d06662e33 Mon Sep 17 00:00:00 2001 From: David Wells Date: Wed, 20 Jan 2016 15:45:26 -0500 Subject: [PATCH] Prefer code to verbatim environments. The pair '@code' and '@endcode' will instruct doxygen to perform syntax highlighting while the verbatim environment does not. --- include/deal.II/grid/intergrid_map.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/deal.II/grid/intergrid_map.h b/include/deal.II/grid/intergrid_map.h index 08ef259ec4..bbe640592d 100644 --- a/include/deal.II/grid/intergrid_map.h +++ b/include/deal.II/grid/intergrid_map.h @@ -80,7 +80,7 @@ DEAL_II_NAMESPACE_OPEN *

Usage

* * In practice, use of this class is as follows: - * @verbatim + * @code * // have two grids, which are derived from the same coarse grid * Triangulation tria1, tria2; * DoFHandler dof_handler_1(tria1), dof_handler_2(tria2); @@ -97,9 +97,9 @@ DEAL_II_NAMESPACE_OPEN * endc = dof_handler_1.end(); * for (; cell!=endc; ++cell) * // now do something with the cell of dof_handler_2 corresponding to - * // @p cell (which is one of dof_handler_1's cells) + * // cell (which is one of dof_handler_1's cells) * f( grid_1_to_2_map[cell]); - * @endverbatim + * @endcode * * Note that the template parameters to this class have to be given as * InterGridMap >, which here is DoFHandler (and could -- 2.39.5