aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorrusty-snake <41237666+rusty-snake@users.noreply.github.com>2022-03-20 13:12:07 +0000
committerEli Schwartz <eschwartz93@gmail.com>2022-03-22 19:11:29 -0400
commit90fba4251157c71b81bd91be7cf3246d85c85338 (patch)
treeee283f39b5671f8f044a73dc50c5f7e39dd01117 /docs
parentb5375eb90fd142ec9f3a16dc00dc53d5e098b2d5 (diff)
downloadmeson-90fba4251157c71b81bd91be7cf3246d85c85338.zip
meson-90fba4251157c71b81bd91be7cf3246d85c85338.tar.gz
meson-90fba4251157c71b81bd91be7cf3246d85c85338.tar.bz2
Fix missing ' in custom_target docs
Diffstat (limited to 'docs')
-rw-r--r--docs/yaml/functions/custom_target.yaml4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/yaml/functions/custom_target.yaml b/docs/yaml/functions/custom_target.yaml
index bfc7da9..40f16b0 100644
--- a/docs/yaml/functions/custom_target.yaml
+++ b/docs/yaml/functions/custom_target.yaml
@@ -173,7 +173,7 @@ kwargs:
custom_target('different-install-dirs',
output : ['first.file', 'second.file'],
install : true,
- install_dir : ['somedir', 'otherdir])
+ install_dir : ['somedir', 'otherdir'])
```
This would install `first.file` to `somedir` and `second.file` to `otherdir`.
@@ -183,7 +183,7 @@ kwargs:
custom_target('only-install-second',
output : ['first.file', 'second.file'],
install : true,
- install_dir : [false, 'otherdir])
+ install_dir : [false, 'otherdir'])
```
This would install `second.file` to `otherdir` and not install `first.file`.