From 760d8d50b67ac2cf57ca6a450079885072b7a068 Mon Sep 17 00:00:00 2001 From: Eli Schwartz Date: Sat, 20 Jan 2024 20:36:48 -0500 Subject: [PATCH] docs: fix another regression in having functional docs In commit 83a973ca04cf53dd98ff487b4273155b82cf554a a bunch of strange changes were made, that were not even tested. Make sure people get the correct command for running coverage targets. --- docs/markdown/Commands.md | 2 +- docs/markdown/howtox.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/markdown/Commands.md b/docs/markdown/Commands.md index 3fcdedd03ca3..831cba85d489 100644 --- a/docs/markdown/Commands.md +++ b/docs/markdown/Commands.md @@ -114,7 +114,7 @@ meson compile foo:shared_library foo:static_library bar Produce a coverage html report (if available): ``` -meson compile coverage-html +ninja coverage-html ``` ### dist diff --git a/docs/markdown/howtox.md b/docs/markdown/howtox.md index 79a87b7c04af..54831a3f7564 100644 --- a/docs/markdown/howtox.md +++ b/docs/markdown/howtox.md @@ -174,7 +174,7 @@ Then issue the following commands. ```console $ meson compile $ meson test -$ meson compile coverage-html (or coverage-xml) +$ ninja coverage-html (or coverage-xml) ``` The coverage report can be found in the meson-logs subdirectory.