From 35e2a5417214a20c8c0697ce6f4ded50705eaaf0 Mon Sep 17 00:00:00 2001 From: sammyette Date: Tue, 20 Dec 2022 21:02:36 -0400 Subject: [PATCH] docs: add emmy lua annotation for id in jobs.disown --- job.go | 1 + 1 file changed, 1 insertion(+) diff --git a/job.go b/job.go index f1bb33a..2b60a80 100644 --- a/job.go +++ b/job.go @@ -462,6 +462,7 @@ func (j *jobHandler) luaAllJobs(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) { // #interface jobs // disown(id) // Disowns a job. This deletes it from the job table. +// --- @param id number func (j *jobHandler) luaDisownJob(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) { if err := c.Check1Arg(); err != nil { return nil, err