diff options
| author | ruki <waruqi@gmail.com> | 2019-07-21 19:24:09 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-07-21 19:24:09 +0800 |
| commit | 31265429b8153b2ee7b4dd042ccf48c5d11b1e0a (patch) | |
| tree | e2f4a3a8c2fd66852dcb1ec3f1426e36a8f89f6d /guide | |
| parent | e2ba3d0eff9510a2a16dfa73c6a04f3caada3528 (diff) | |
| download | xmake-docs-31265429b8153b2ee7b4dd042ccf48c5d11b1e0a.tar.gz xmake-docs-31265429b8153b2ee7b4dd042ccf48c5d11b1e0a.zip | |
Update syntax_description.md
Diffstat (limited to 'guide')
| -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) ``` |
