diff --git a/docs/api/hilbish/hilbish.jobs.md b/docs/api/hilbish/hilbish.jobs.md index b36b748..e41be2c 100644 --- a/docs/api/hilbish/hilbish.jobs.md +++ b/docs/api/hilbish/hilbish.jobs.md @@ -15,9 +15,6 @@ Jobs are the name of background tasks/commands. A job can be started via interactive usage or with the functions defined below for use in external runners. ## Functions -### stop() -Stops the job from running. - ### add(cmdstr, args, execPath) Adds a new job to the job table. Note that this does not immediately run it. @@ -56,3 +53,6 @@ executed normally and wait for it to complete. #### start() Starts running the job. +#### stop() +Stops the job from running. + diff --git a/emmyLuaDocs/hilbish.lua b/emmyLuaDocs/hilbish.lua index 81a9e6d..24588bd 100644 --- a/emmyLuaDocs/hilbish.lua +++ b/emmyLuaDocs/hilbish.lua @@ -183,7 +183,7 @@ function hilbish.runner.lua(cmd) end function hilbish.jobs:start() end --- Stops the job from running. -function hilbish.jobs.stop() end +function hilbish.jobs:stop() end --- Runs a command in Hilbish's shell script interpreter. --- This is the equivalent of using `source`.