diff options
| -rw-r--r-- | guide/syntax_description.md | 4 |
1 files changed, 2 insertions, 2 deletions
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) ``` |
