From: Wolfgang Bangerth Date: Sat, 1 Feb 2020 12:36:20 +0000 (-0700) Subject: Reindent a couple of comments. X-Git-Tag: v9.2.0-rc1~583^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ce292becc59e18f8b7de5318a9e3c64f05984b3f;p=dealii.git Reindent a couple of comments. --- diff --git a/include/deal.II/numerics/data_out.h b/include/deal.II/numerics/data_out.h index ca42bff637..8addb54108 100644 --- a/include/deal.II/numerics/data_out.h +++ b/include/deal.II/numerics/data_out.h @@ -180,30 +180,29 @@ public: enum CurvedCellRegion { /** - * The geometry or boundary description - * will never be queried for curved geometries. This means that even - * if you have more than one subdivision per cell (see - * DataOut::build_patches() for what exactly this means) and even - * if the geometry really is curved, each cell will still be - * subdivided as if it was just a bi- or trilinear cell. + * The geometry or boundary description will never be queried for + * curved geometries. This means that even if you have more than + * one subdivision per cell (see DataOut::build_patches() for what + * exactly this means) and even if the geometry really is curved, + * each cell will still be subdivided as if it was just a bi- or + * trilinear cell. */ no_curved_cells, /** - * The geometry or boundary description - * will be queried for curved geometries for cells located - * at the boundary, i.e., for cells that have at least one - * face at the boundary. This is sufficient if you have not - * attached a manifold description to the interiors of cells - * but only to faces at the boundary. + * The geometry or boundary description will be queried for curved + * geometries for cells located at the boundary, i.e., for cells + * that have at least one face at the boundary. This is sufficient + * if you have not attached a manifold description to the + * interiors of cells but only to faces at the boundary. */ curved_boundary, /** - * The geometry description will be - * queried for all cells and all faces, whether they are - * at the boundary or not. This option is appropriate if you - * have attached a manifold object to cells (not only to faces). + * The geometry description will be queried for all cells and all + * faces, whether they are at the boundary or not. This option is + * appropriate if you have attached a manifold object to cells + * (not only to faces). */ curved_inner_cells };