aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorBenoit Pierre <benoit.pierre@gmail.com>2023-09-19 12:26:58 +0200
committerDylan Baker <dylan@pnwbakers.com>2023-09-19 12:29:31 -0700
commit74407670e1a4fb12605e17806b53c42b0559b343 (patch)
treefa3bfa30ecdfd21bba1cae766c48b188dfd02dfe /docs
parentdbf081c9ce7c145908d96eb9fa664b8b5b1f5896 (diff)
downloadmeson-74407670e1a4fb12605e17806b53c42b0559b343.zip
meson-74407670e1a4fb12605e17806b53c42b0559b343.tar.gz
meson-74407670e1a4fb12605e17806b53c42b0559b343.tar.bz2
docs: fix `add_project_link_arguments` documentation
It should refer to `add_project_arguments`, not `add_global_arguments`.
Diffstat (limited to 'docs')
-rw-r--r--docs/yaml/functions/add_project_link_arguments.yaml6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/yaml/functions/add_project_link_arguments.yaml b/docs/yaml/functions/add_project_link_arguments.yaml
index 8ae4763..e259b6c 100644
--- a/docs/yaml/functions/add_project_link_arguments.yaml
+++ b/docs/yaml/functions/add_project_link_arguments.yaml
@@ -1,9 +1,9 @@
name: add_project_link_arguments
returns: void
description: |
- Adds global arguments to the linker command line.
+ Adds project specific arguments to the linker command line.
- Like [[add_global_arguments]] but the arguments are passed to the linker.
+ Like [[add_project_arguments]] but the arguments are passed to the linker.
notes:
- You must pass always arguments individually `arg1, arg2, ...`
@@ -14,4 +14,4 @@ varargs:
name: Linker argument
description: The linker arguments to add
-kwargs_inherit: add_global_arguments
+kwargs_inherit: add_project_arguments