diff --git a/docs/hilbish.txt b/docs/hilbish.txt index 922b866..80dad96 100644 --- a/docs/hilbish.txt +++ b/docs/hilbish.txt @@ -59,5 +59,5 @@ will call it to execute user input instead. timeout(cb, time) > Runs the `cb` function after `time` in milliseconds Returns a `timer` object (see `doc timers`). -which(binName) > Searches for an executable called `binName` in the directories of $PATH +which(name) > Checks if `name` is a valid command diff --git a/emmyLuaDocs/hilbish.lua b/emmyLuaDocs/hilbish.lua index 0bcc84c..64f6f9c 100644 --- a/emmyLuaDocs/hilbish.lua +++ b/emmyLuaDocs/hilbish.lua @@ -103,7 +103,7 @@ function hilbish.runnerMode(mode) end --- @return table function hilbish.timeout(cb, time) end ---- Searches for an executable called `binName` in the directories of $PATH +--- Checks if `name` is a valid command --- @param binName string function hilbish.which(binName) end