diff options
Diffstat (limited to 'docs/markdown/howtox.md')
-rw-r--r-- | docs/markdown/howtox.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/markdown/howtox.md b/docs/markdown/howtox.md index 5f9d136..c89f883 100644 --- a/docs/markdown/howtox.md +++ b/docs/markdown/howtox.md @@ -150,7 +150,7 @@ Then issue the following commands. ```console $ meson compile $ meson test -$ ninja coverage-html (or coverage-xml) +$ meson compile coverage-html (or coverage-xml) ``` The coverage report can be found in the meson-logs subdirectory. @@ -190,14 +190,14 @@ test failures. Install scan-build and configure your project. Then do this: ```console -$ ninja scan-build +$ meson compile scan-build ``` You can use the `SCANBUILD` environment variable to choose the scan-build executable. ```console -$ SCANBUILD=<your exe> ninja scan-build +$ SCANBUILD=<your exe> meson compile scan-build ``` |