aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/Design-rationale.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/markdown/Design-rationale.md')
-rw-r--r--docs/markdown/Design-rationale.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/markdown/Design-rationale.md b/docs/markdown/Design-rationale.md
index 57aaee4..7121192 100644
--- a/docs/markdown/Design-rationale.md
+++ b/docs/markdown/Design-rationale.md
@@ -223,11 +223,11 @@ add_test('test library', exe)
```
First we build a shared library named foobar. It is marked
-installable, so running `ninja install` installs it to the library
+installable, so running `meson install` installs it to the library
directory (the system knows which one so the user does not have to
care). Then we build a test executable which is linked against the
library. It will not be installed, but instead it is added to the list
-of unit tests, which can be run with the command `ninja test`.
+of unit tests, which can be run with the command `meson test`.
Above we mentioned precompiled headers as a feature not supported by
other build systems. Here's how you would use them.