From 26dcc0f8a26da93271c4fb3d0e2eff080e1ce379 Mon Sep 17 00:00:00 2001
From: Stefan Meggendorfer <stefan.meggendorfer@gmail.com>
Date: Thu, 8 Feb 2024 12:49:26 +0000
Subject: [PATCH] Update getting-started.md

---
 doc/doxygen/pages/getting-started.md | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/doc/doxygen/pages/getting-started.md b/doc/doxygen/pages/getting-started.md
index c10f408174..80508ab8d8 100644
--- a/doc/doxygen/pages/getting-started.md
+++ b/doc/doxygen/pages/getting-started.md
@@ -103,6 +103,8 @@ To configure your new module run `dunecontrol`:
 ./dune-common/bin/dunecontrol --opts=dumux/cmake.opts --only=dumux-yourmodule all
 ```
 
+Note: This command only configures the new module (other modules must already be configured). If you need to configure the new module and (re)configure all dependencies, you can use `--module=dumux-yourmodule` instead of `--only=dumux-yourmodule` in the command above. This may also be necessary if the configuration with the `--only` option fails.
+
 Now you can create your own test case. Enter the `dumux-yourmodule` folder and create a new folder (e.g. `appl`), that will contain your first test case.
 
 ```bash
@@ -150,7 +152,7 @@ cd appl
 ./test_1p_compressible_stationary_tpfa params.input
 ```
 
-This result visualized in with ParaView should look something like this:
+This result visualized with ParaView should look something like this:
 ![1p pressure solution](https://dumux.org/images/gettingstarted/1p_pressure.png)
 
 ## Next steps
-- 
GitLab