From: David Wells Date: Wed, 20 Jan 2016 18:50:58 +0000 (-0500) Subject: Reindent comments in the documentation: part 2. X-Git-Tag: v8.4.0-rc2~71^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cd65e6e2fa34042f5c836d3e1ccac3614141090e;p=dealii.git Reindent comments in the documentation: part 2. Up until 801cfbfc1d deal.II used a style where comments would start at about the 20th character for visibility. Some comments within the documentation were not updated at the time. --- diff --git a/include/deal.II/grid/intergrid_map.h b/include/deal.II/grid/intergrid_map.h index c7f67c79df..287b429605 100644 --- a/include/deal.II/grid/intergrid_map.h +++ b/include/deal.II/grid/intergrid_map.h @@ -81,16 +81,14 @@ DEAL_II_NAMESPACE_OPEN * * In practice, use of this class is as follows: * @verbatim - * // have two grids, which are derived from the - * // same coarse grid + * // have two grids, which are derived from the same coarse grid * Triangulation tria1, 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 + * // do something with these objects, e.g. refine the triangulations + * // differently, distribute degrees of freedom, etc * ... - * // create the mapping + * // create the mapping * InterGridMap > grid_1_to_2_map; * grid_1_to_2_map.make_mapping (dof_handler_1, * dof_handler_2); @@ -98,9 +96,8 @@ DEAL_II_NAMESPACE_OPEN * typename DoFHandler::cell_iterator cell = dof_handler_1.begin(), * 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 + * // now do something with the cell of dof_handler_2 corresponding to + * // @p cell (which is one of dof_handler_1 * f( grid_1_to_2_map[cell]); * @endverbatim *