From: Wolfgang Bangerth Date: Fri, 8 Jun 2018 05:21:18 +0000 (-0600) Subject: Trick doxygen into doing the right thing. X-Git-Tag: v9.1.0-rc1~1059^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0b2537fad6efa13d391015f91a9272451086a500;p=dealii.git Trick doxygen into doing the right thing. Previously, there was a line that started with '4.', which doxygen markdown interpreted as a entry in a numbered list -- amusingly then starting the numbering in HTML with '1.'. Avoid this misinterpretation by just reindenting the whole paragraph. --- diff --git a/doc/doxygen/headers/multithreading.h b/doc/doxygen/headers/multithreading.h index 40105fc2be..41c2913338 100644 --- a/doc/doxygen/headers/multithreading.h +++ b/doc/doxygen/headers/multithreading.h @@ -104,11 +104,11 @@ * generally coincide with entire code blocks. * * The point here is this: If we wanted to use threads to exploit the - * independence of tasks 2 and 3, we would start two threads and run each of - * tasks 2 and 3 on its own thread; we would then wait for the two threads to - * finish (an operation called "joining a thread") and go on with statement - * 4. Code to achieve this would look like this (the actual syntax is - * explained in more detail below): + * independence of tasks 2 and 3, we would start two threads and run + * each of tasks 2 and 3 on its own thread; we would then wait for the + * two threads to finish (an operation called "joining a thread") and + * go on with statement 4. Code to achieve this would look like this + * (the actual syntax is explained in more detail below): * @code dof_handler.distribute_dofs (fe);