summaryrefslogtreecommitdiff
path: root/docs/markdown/Release-notes-for-0.56.0.md
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2020-11-22 19:01:49 -0500
committerDylan Baker <dylan@pnwbakers.com>2020-11-22 18:29:55 -0800
commit1db800bf67fc80abee313381aac0528ee33103c9 (patch)
treef362a43cff6b7c5a45b4ce71fdbadf9f0d32e03e /docs/markdown/Release-notes-for-0.56.0.md
parentc2f647867e987a55738bb4cf7e8e55ea1e8b1dd5 (diff)
downloadmeson-1db800bf67fc80abee313381aac0528ee33103c9.tar.gz
doc: fix confusing use of "build" as a directory argument [skip ci]
In most places, we now refer to "builddir/" which is a lot less likely to make people think it is a subcommand which needs to be used literally. This is a regression since commit 276d342ebaf859dd53e145ead3e98e2cebb360ab due to the existence of new docs which were added later on, using the wrong form.
Diffstat (limited to 'docs/markdown/Release-notes-for-0.56.0.md')
-rw-r--r--docs/markdown/Release-notes-for-0.56.0.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/markdown/Release-notes-for-0.56.0.md b/docs/markdown/Release-notes-for-0.56.0.md
index 6fca70ad4..cef1dee77 100644
--- a/docs/markdown/Release-notes-for-0.56.0.md
+++ b/docs/markdown/Release-notes-for-0.56.0.md
@@ -145,13 +145,13 @@ foo = 'other val'
```
```console
-meson build --native-file my.ini
+meson builddir/ --native-file my.ini
```
Will result in the option foo having the value `other val`,
```console
-meson build --native-file my.ini -Dfoo='different val'
+meson builddir/ --native-file my.ini -Dfoo='different val'
```
Will result in the option foo having the value `different val`,