summaryrefslogtreecommitdiff
path: root/docs/markdown/IndepthTutorial.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/markdown/IndepthTutorial.md')
-rw-r--r--docs/markdown/IndepthTutorial.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/markdown/IndepthTutorial.md b/docs/markdown/IndepthTutorial.md
index dd93f826b..d2e26626f 100644
--- a/docs/markdown/IndepthTutorial.md
+++ b/docs/markdown/IndepthTutorial.md
@@ -79,12 +79,12 @@ With these four files we are done. To configure, build and run the test suite, w
```console
$ meson builddir && cd builddir
-$ ninja
-$ ninja test
+$ meson compile
+$ meson test
```
To then install the project you only need one command.
```console
-$ ninja install
+$ meson install
```