aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/Generating-sources.md
diff options
context:
space:
mode:
authorAlexis Jeandet <alexis.jeandet@member.fsf.org>2017-07-17 10:07:09 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2017-07-17 13:07:48 +0200
commit361b09c491f9bdff35046e78baeb8c0f9bf9feeb (patch)
tree9c1d2c99c85dd0032bb252fb66317f0c46e80ba7 /docs/markdown/Generating-sources.md
parentf77c3176ab5cb583fc32bfdebeb320481b7d3592 (diff)
downloadmeson-361b09c491f9bdff35046e78baeb8c0f9bf9feeb.zip
meson-361b09c491f9bdff35046e78baeb8c0f9bf9feeb.tar.gz
meson-361b09c491f9bdff35046e78baeb8c0f9bf9feeb.tar.bz2
Added a missing closing parenthesis in the last example
There was a missing parenthesis at the end of the last example.
Diffstat (limited to 'docs/markdown/Generating-sources.md')
-rw-r--r--docs/markdown/Generating-sources.md2
1 files changed, 1 insertions, 1 deletions
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.