From: Wolfgang Bangerth Date: Sat, 3 Oct 2009 01:58:41 +0000 (+0000) Subject: Fix markup in a number of places. X-Git-Tag: v8.0.0~6992 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9e53facdf96e885bc14cdea7d8658b8b4da0838a;p=dealii.git Fix markup in a number of places. git-svn-id: https://svn.dealii.org/trunk@19684 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/include/numerics/mesh_worker.h b/deal.II/deal.II/include/numerics/mesh_worker.h index 285c524eac..b4bef51b70 100644 --- a/deal.II/deal.II/include/numerics/mesh_worker.h +++ b/deal.II/deal.II/include/numerics/mesh_worker.h @@ -59,8 +59,8 @@ template class MGDoFHandler; * assembling. In order to use it, follow this recipe: fist, create a * class responsible for the local integration: * - * @begin{code} - * @end{code} + * @code + * @endcode * * @author Guido Kanschat, 2009 */ @@ -155,7 +155,7 @@ namespace MeshWorker * eeffort. If no selectors * are used, then values for * all named vectors in - * #global_data will be + * DoFInfo::global_data will be * computed in all quadrature * points. * @@ -288,7 +288,7 @@ namespace MeshWorker * In order to use this class, it will be necessary to create an * INTEGRATOR class following this template: * - * @begin{code} + * @code * template * class MyLocalOperator : public Subscriptor * { @@ -298,19 +298,19 @@ namespace MeshWorker * void face(typename IntegrationWorker::FaceInfo& info1, * typename IntegrationWorker::FaceInfo& info2) const; * }; - * @end{code} + * @endcode * * This class will do whatever your problem requires locally on each * cell and/or face. Once this class is defined, you choose a suitable * assembler for your problem from the Assembler namespace and set up * objects: * - * @begin{code} + * @code * MyLocalOperator myop; * * AssemblingIntegrator > * integrator(myop); - * @end{code} + * @endcode * * You do the necessary initializations of this @p integrator and then * you have a worker object suitable for integration_loop().