From 31265429b8153b2ee7b4dd042ccf48c5d11b1e0a Mon Sep 17 00:00:00 2001 From: ruki Date: Sun, 21 Jul 2019 19:24:09 +0800 Subject: Update syntax_description.md --- guide/syntax_description.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'guide') diff --git a/guide/syntax_description.md b/guide/syntax_description.md index 88c1a188..66e96dcc 100644 --- a/guide/syntax_description.md +++ b/guide/syntax_description.md @@ -108,7 +108,7 @@ local var1 = 0 -- global variables that affect all subsmake.lua included after includes() var2 = 1 -Includes("src") +includes("src") ``` ### Internal Scope @@ -146,7 +146,7 @@ target("iosdemo")     after_build(function (target)         -- Execute signature, if it fails, automatically interrupt, giving a highlight error message -        Os.run("ldid -S$(projectdir)/entitlements.plist %s", target:targetfile()) +        os.run("ldid -S$(projectdir)/entitlements.plist %s", target:targetfile())     end) ``` -- cgit v1.2.3