Minor grammer fixes.

develop
Gabe Rau 2021-03-20 15:51:35 -06:00
parent cc376eeb55
commit 81b6d93701
1 changed files with 3 additions and 3 deletions

@ -4411,9 +4411,9 @@ General script API
* ``dfhack.run_script(name[,args...])``
Run a Lua script in hack/scripts/, as if it was started from the DFHack
Run a Lua script in hack/scripts/, as if it were started from the DFHack
command-line. The ``name`` argument should be the name of the script without
its extension, as would be used on the command line.
its extension, as it would be used on the command line.
Example:
@ -4421,7 +4421,7 @@ General script API
repeat -time 14 -timeUnits days -command [ workorder ShearCreature ] -name autoShearCreature
In lua script::
In Lua script::
dfhack.run_script("repeat", "-time", "14", "-timeUnits", "days", "-command", "[", "workorder", "ShearCreature", "]", "-name", "autoShearCreature")