aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-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 19213af..82b043d 100644
--- a/docs/markdown/Generating-sources.md
+++ b/docs/markdown/Generating-sources.md
@@ -19,7 +19,7 @@ mycomp = find_program('mycompiler')
Custom targets can take zero or more input files and use them to generate one or more output files. Using a custom target, you can run this compiler at build time to generate the sources:
```meson
-gen_src = custom_target('gen-output,
+gen_src = custom_target('gen-output',
input : ['somefile1.c', 'file2.c']
output : ['out.c', 'out.h']
command : [mycomp, '@INPUT@',