aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2022-06-21 16:29:03 -0400
committerEli Schwartz <eschwartz@archlinux.org>2022-06-21 16:29:30 -0400
commita20523aa5f8ee8152f42a158226b1b3112a26521 (patch)
treea319237d5eb66cccf2d546270adcae5cdeb95a3d
parentb72a5668c2cecde6e88142eeb8c2227c7305bf9a (diff)
downloadmeson-a20523aa5f8ee8152f42a158226b1b3112a26521.zip
meson-a20523aa5f8ee8152f42a158226b1b3112a26521.tar.gz
meson-a20523aa5f8ee8152f42a158226b1b3112a26521.tar.bz2
docs: grammar and formatting nits
-rw-r--r--docs/markdown/Unit-tests.md10
1 files changed, 8 insertions, 2 deletions
diff --git a/docs/markdown/Unit-tests.md b/docs/markdown/Unit-tests.md
index f798d67..421270e 100644
--- a/docs/markdown/Unit-tests.md
+++ b/docs/markdown/Unit-tests.md
@@ -238,9 +238,15 @@ the like.
In the test case options, the `timeout` option is specified in a number of seconds.
-To disable timeout in test cases, add `timeout: 0` or negative value to allow infinite duration for test case to completes.
+To disable timeout in test cases, add `timeout: 0` or a negative value to allow
+infinite duration for the test case to complete.
-For running test, you can specify command line argument for overriding timeout as well by supplying `--timeout-multiplier 0` command line argument.
+For running tests, you can specify a command line argument for overriding the
+timeout as well:
+
+```console
+$ meson test --timeout-multiplier 0
+```
For further information see the command line help of Meson by running
`meson test -h`.