From 69fc87a5d7d591b67447348d2d67edd1e6fa5207 Mon Sep 17 00:00:00 2001 From: Benoit Pierre Date: Tue, 19 Sep 2023 12:26:58 +0200 Subject: [PATCH] docs: fix `add_project_link_arguments` documentation It should refer to `add_project_arguments`, not `add_global_arguments`. --- docs/yaml/functions/add_project_link_arguments.yaml | 6 +++--- 1 file 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 8ae4763065a4..e259b6ccf365 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