aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/Meson-sample.md
diff options
context:
space:
mode:
authorTheQwertiest <qwertiest@mail.ru>2020-06-15 18:36:08 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2020-06-18 17:47:10 +0300
commit96609da8d26fc05be8845c1edf05c8aa38af047d (patch)
treeb5e5dfdf414d9f9efac2c0743cc211082ef34498 /docs/markdown/Meson-sample.md
parente191cbf6e990caa0e912996977584909aab21da8 (diff)
downloadmeson-96609da8d26fc05be8845c1edf05c8aa38af047d.zip
meson-96609da8d26fc05be8845c1edf05c8aa38af047d.tar.gz
meson-96609da8d26fc05be8845c1edf05c8aa38af047d.tar.bz2
docs: replaced `ninja` with appropriate `meson` commands [skip ci]
Diffstat (limited to 'docs/markdown/Meson-sample.md')
-rw-r--r--docs/markdown/Meson-sample.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/markdown/Meson-sample.md b/docs/markdown/Meson-sample.md
index 6f26f36..f98e022 100644
--- a/docs/markdown/Meson-sample.md
+++ b/docs/markdown/Meson-sample.md
@@ -50,7 +50,7 @@ exe = executable('myexe', src)
test('simple test', exe)
```
-Here we create a unit test called *simple test*, and which uses the built executable. When the tests are run with the `ninja test` command, the built executable is run. If it returns zero, the test passes. A non-zero return value indicates an error, which Meson will then report to the user.
+Here we create a unit test called *simple test*, and which uses the built executable. When the tests are run with the `meson test` command, the built executable is run. If it returns zero, the test passes. A non-zero return value indicates an error, which Meson will then report to the user.
A note to Visual Studio users
-----