From 361b09c491f9bdff35046e78baeb8c0f9bf9feeb Mon Sep 17 00:00:00 2001 From: Alexis Jeandet Date: Mon, 17 Jul 2017 10:07:09 +0200 Subject: Added a missing closing parenthesis in the last example There was a missing parenthesis at the end of the last example. --- docs/markdown/Generating-sources.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/markdown/Generating-sources.md b/docs/markdown/Generating-sources.md index 8a03945..c251805 100644 --- a/docs/markdown/Generating-sources.md +++ b/docs/markdown/Generating-sources.md @@ -68,7 +68,7 @@ Generators can also generate multiple output files with unknown names: ```meson gen2 = generator(someprog, outputs : ['@BASENAME@.c', '@BASENAME@.h'], - arguments : ['--out_dir=@BUILD_DIR@', '@INPUT@'] + arguments : ['--out_dir=@BUILD_DIR@', '@INPUT@']) ``` In this case you can not use the plain `@OUTPUT@` variable, as it would be ambiguous. This program only needs to know the output directory, it will generate the file names by itself. -- cgit v1.1