From ea0e910c50b4ffbd1fd097c0dbfcb821b2721811 Mon Sep 17 00:00:00 2001 From: David Wells Date: Wed, 20 Jan 2016 15:50:58 -0500 Subject: [PATCH] Improve formatting in a documentation example. --- include/deal.II/grid/intergrid_map.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/deal.II/grid/intergrid_map.h b/include/deal.II/grid/intergrid_map.h index bbe640592d..be852722c1 100644 --- a/include/deal.II/grid/intergrid_map.h +++ b/include/deal.II/grid/intergrid_map.h @@ -83,7 +83,7 @@ DEAL_II_NAMESPACE_OPEN * @code * // have two grids, which are derived from the same coarse grid * Triangulation tria1, tria2; - * DoFHandler dof_handler_1(tria1), dof_handler_2(tria2); + * DoFHandler dof_handler_1 (tria1), dof_handler_2 (tria2); * ... * // do something with these objects, e.g. refine the triangulations * // differently, distribute degrees of freedom, etc @@ -98,7 +98,7 @@ DEAL_II_NAMESPACE_OPEN * for (; cell!=endc; ++cell) * // now do something with the cell of dof_handler_2 corresponding to * // cell (which is one of dof_handler_1's cells) - * f( grid_1_to_2_map[cell]); + * f (grid_1_to_2_map[cell]); * @endcode * * Note that the template parameters to this class have to be given as -- 2.39.5