From: Wolfgang Bangerth Date: Tue, 31 Aug 2010 16:00:55 +0000 (+0000) Subject: Fix formatting of comments. X-Git-Tag: v8.0.0~5607 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0741746e3fcd4d0bffa3cbe5ed51f27c4308c212;p=dealii.git Fix formatting of comments. git-svn-id: https://svn.dealii.org/trunk@21811 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/include/numerics/mesh_worker_info.h b/deal.II/deal.II/include/numerics/mesh_worker_info.h index 057eec05fb..40bd127aa0 100644 --- a/deal.II/deal.II/include/numerics/mesh_worker_info.h +++ b/deal.II/deal.II/include/numerics/mesh_worker_info.h @@ -519,7 +519,7 @@ namespace MeshWorker * * * In order to allow for sufficient generality, a few steps have to be - * undertaken to use this class. + * undertaken to use this class. * * First, you should consider if you need values from any vectors in a * NamedData object. If so, fill the VectorSelector objects @@ -551,7 +551,10 @@ namespace MeshWorker { public: -/// The type of the info object for cells + /** + * The type of the info object + * for cells. + */ typedef IntegrationInfo CellInfo; void initialize(const FiniteElement& el, @@ -788,15 +791,33 @@ namespace MeshWorker template void post_faces(const DoFInfoBox&); -/// The info object for a cell + /** + * The info object for a cell. + */ CellInfo cell; -/// The info object for a boundary face + /** + * The info object for a + * boundary face. + */ CellInfo boundary; -/// The info object for a regular interior face, seen from the first cell + /** + * The info object for a + * regular interior face, seen + * from the first cell. + */ CellInfo face; -/// The info object for the refined side of an interior face seen from the first cell + /** + * The info object for the + * refined side of an interior + * face seen from the first + * cell. + */ CellInfo subface; -/// The info object for an interior face, seen from the other cell + /** + * The info object for an + * interior face, seen from the + * other cell. + */ CellInfo neighbor; /* @} */