From 3db6334445c3f4f4d651a2235ed632a1bfbed5da Mon Sep 17 00:00:00 2001 From: TorchedSammy Date: Sat, 23 Apr 2022 04:01:54 +0000 Subject: [PATCH] docs: [ci] generate new docs --- docs/fs.txt | 2 ++ emmyLuaDocs/fs.lua | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/docs/fs.txt b/docs/fs.txt index 648737e..e9f1548 100644 --- a/docs/fs.txt +++ b/docs/fs.txt @@ -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. diff --git a/emmyLuaDocs/fs.lua b/emmyLuaDocs/fs.lua index f94fd2b..cd82d5c 100644 --- a/emmyLuaDocs/fs.lua +++ b/emmyLuaDocs/fs.lua @@ -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