docs: [ci] generate new docs

insensitive-tab^2
TorchedSammy 2022-04-23 04:01:54 +00:00 committed by TorchedSammy
parent 9e596dc271
commit 3db6334445
Signed by: sammyette
GPG Key ID: 904FC49417B44DCD
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,5 @@
abs(path) > Gives an absolute version of `path`.
cd(dir) > Changes directory to `dir`
mkdir(name, recursive) > Makes a directory called `name`. If `recursive` is true, it will create its parent directories.

View File

@ -2,6 +2,10 @@
local fs = {}
--- Gives an absolute version of `path`.
--- @param path string
function fs.abs(path) end
--- Changes directory to `dir`
--- @param dir string
function fs.cd(dir) end