From: David Wells Date: Wed, 20 Jan 2016 20:45:26 +0000 (-0500) Subject: Prefer code to verbatim environments. X-Git-Tag: v8.4.0-rc2~69^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eb0613daf61942cfaa4a9dd1952d338d06662e33;p=dealii.git Prefer code to verbatim environments. The pair '@code' and '@endcode' will instruct doxygen to perform syntax highlighting while the verbatim environment does not. --- 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