From 73f62cb21039035725321d1eee90c5136366327d Mon Sep 17 00:00:00 2001
From: IvBu <ivan.buntic@iws.uni-stuttgart.de>
Date: Mon, 17 Feb 2025 09:27:34 +0100
Subject: [PATCH] [doc] Fix typos for parallelism.

---
 doc/doxygen/pages/external-libs.md | 4 ++--
 doc/doxygen/pages/parallel.md      | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/doc/doxygen/pages/external-libs.md b/doc/doxygen/pages/external-libs.md
index fa0fe89663..4fcd91f2a3 100644
--- a/doc/doxygen/pages/external-libs.md
+++ b/doc/doxygen/pages/external-libs.md
@@ -40,7 +40,7 @@ Download: https://gitlab.dune-project.org/extensions/dune-spgrid.git
 
 ## Parallel computing (shared memory)
 
-If one of the following libraries is installation, multi-threaded code is enabled in DuMux:
+If one of the following libraries is installed, multi-threaded code is enabled in DuMux:
 
 * `OpenMP`: OpenMP usually comes with the compiler
 * `OneTBB`: TBB, see https://github.com/oneapi-src/oneTBB
@@ -52,7 +52,7 @@ or by modifying it in the CMake cache (in `dumux/build-cmake` run `ccmake .`).
 When running `dunecontrol` or CMake, the output contains a line like
 
 ```
--- Dumux multithreading backed: TBB
+-- Dumux multithreading backend: TBB
 ```
 
 which in this case shows that the selected backend is TBB.
diff --git a/doc/doxygen/pages/parallel.md b/doc/doxygen/pages/parallel.md
index 54499b3a19..ad2cb83bac 100644
--- a/doc/doxygen/pages/parallel.md
+++ b/doc/doxygen/pages/parallel.md
@@ -89,11 +89,11 @@ Some parts of Dumux application can exploit parallelism with the shared memory m
 
 Multithreading is enabled if a multi-threading backend is found. Currently, we support one of `OpenMP`, `TBB`,  C++ parallel algorithms, `Kokkos`. The backend is selected by `CMake` during configure and stored in the variable `DUMUX_MULTITHREADING_BACKEND`. In the `CMake` terminal output during `dunecontrol` (see @ref installation), you may see
 
-    -- Dumux multithreading backed: TBB
+    -- Dumux multithreading backend: TBB
 
 or
 
-    -- Dumux multithreading backed: Serial
+    -- Dumux multithreading backend: Serial
 
 if no suitable backend could be found. You can switch backends after DuMu<sup>x</sup> has been configured by running in the build folder (e.g. `dumux/build-cmake`)
 
-- 
GitLab