From: David Wells Date: Wed, 20 Jan 2016 20:50:58 +0000 (-0500) Subject: Improve formatting in a documentation example. X-Git-Tag: v8.4.0-rc2~69^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ea0e910c50b4ffbd1fd097c0dbfcb821b2721811;p=dealii.git Improve formatting in a documentation example. --- 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