From 0b2537fad6efa13d391015f91a9272451086a500 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Thu, 7 Jun 2018 23:21:18 -0600 Subject: [PATCH] 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. --- doc/doxygen/headers/multithreading.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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); -- 2.39.5