From 96dcd460c1133dd918b55a09985189ba14015ae5 Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Sun, 13 Aug 2017 16:16:25 -0600 Subject: [PATCH] remove backticks --- include/deal.II/meshworker/assemble_flags.h | 2 +- include/deal.II/meshworker/mesh_loop.h | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/include/deal.II/meshworker/assemble_flags.h b/include/deal.II/meshworker/assemble_flags.h index 17d1c05e10..e7faafb6c5 100644 --- a/include/deal.II/meshworker/assemble_flags.h +++ b/include/deal.II/meshworker/assemble_flags.h @@ -34,7 +34,7 @@ namespace MeshWorker * elements need to be assembled. * * You can select more than one flag by concatenation using the bitwise or - * `operator|(AssembleFlags,AssembleFlags)`. + * operator|(AssembleFlags,AssembleFlags). * * @author Luca Heltai, 2017. */ diff --git a/include/deal.II/meshworker/mesh_loop.h b/include/deal.II/meshworker/mesh_loop.h index 51a7f756a9..dbd7c3b85c 100644 --- a/include/deal.II/meshworker/mesh_loop.h +++ b/include/deal.II/meshworker/mesh_loop.h @@ -67,9 +67,9 @@ namespace MeshWorker * AssembleFlags @p flags that are passed. The @p cell_worker is passed the * cell identifier, a ScratchData object, and a CopyData object, following * the same principles of WorkStream::run. Internally the function passes to - * `boundary_worker`, in addition to the above, also a `face_no` parameter + * @p boundary_worker, in addition to the above, also a @p face_no parameter * that identifies the face on which the integration should be performed. The - * `face_worker` instead needs to identify the current face unambiguously both on + * @p face_worker instead needs to identify the current face unambiguously both on * the cell and on the neighboring cell, and it is therefore called with six * arguments (three for each cell: the actual cell, the face index, and * the subface_index. If no subface integration is needed, then the @@ -83,12 +83,12 @@ namespace MeshWorker * AssembleFlags::cells_first. * * If the flag AssembleFlags::assemble_own_interior_faces_once is specified, - * then each interior face is visited only once, and the `face_worker` is + * then each interior face is visited only once, and the @p face_worker is * assumed to integrate all face terms at once (and add contributions to both * sides of the face in a discontinuous Galerkin setting). * * This method is equivalent to the WorkStream::run() method when - * AssembleFlags contains only `assemble_own_cells`, and can be used as a + * AssembleFlags contains only @p assemble_own_cells, and can be used as a * drop-in replacement for that method. * * The two data types ScratchData and CopyData need to have a working copy -- 2.39.5