Bladeren bron

Fix capitalization in code example (#186)

Lorenzo Lapucci 1 jaar geleden
bovenliggende
commit
92da82cc25
1 gewijzigde bestanden met toevoegingen van 5 en 5 verwijderingen
  1. 5 5
      guide/syntax_description.md

+ 5 - 5
guide/syntax_description.md

@@ -98,10 +98,10 @@ target("test")
         end
     end)
     after_build(function (target)
-        Import("core.project.config")
-        Local targetfile = target:targetfile()
-        Os.cp(targetfile, path.join(config.buildir(), path.filename(targetfile)))
-        Print("build %s", targetfile)
+        import("core.project.config")
+        local targetfile = target:targetfile()
+        os.cp(targetfile, path.join(config.buildir(), path.filename(targetfile)))
+        print("build %s", targetfile)
     end)
 ```
 
@@ -578,4 +578,4 @@ target("bar", function ()
 end)
 ```
 
-The foo and bar domains are completely isolated and we can configure other settings between them without affecting them, plus it is very LSP friendly.
+The foo and bar domains are completely isolated and we can configure other settings between them without affecting them, plus it is very LSP friendly.