From cb05b2aab0df8e99f1526a66a2639501ae12dd2e Mon Sep 17 00:00:00 2001 From: Marty Plummer Date: Wed, 12 Jul 2017 23:02:41 -0500 Subject: [PATCH] docs: fixed meson syntax for Generating-sources.md Signed-off-by: Marty Plummer --- docs/markdown/Generating-sources.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/markdown/Generating-sources.md b/docs/markdown/Generating-sources.md index 630b7e9e7..8a03945c7 100644 --- a/docs/markdown/Generating-sources.md +++ b/docs/markdown/Generating-sources.md @@ -24,8 +24,8 @@ Custom targets can take zero or more input files and use them to generate one or ```meson gen_src = custom_target('gen-output', - input : ['somefile1.c', 'file2.c'] - output : ['out.c', 'out.h'] + input : ['somefile1.c', 'file2.c'], + output : ['out.c', 'out.h'], command : [mycomp, '@INPUT@', '--c-out', '@OUTPUT0@', '--h-out', '@OUTPUT1@'])