diff options
Diffstat (limited to 'lua/mason-core/fs.lua')
| -rw-r--r-- | lua/mason-core/fs.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/mason-core/fs.lua b/lua/mason-core/fs.lua index a69b5de5..f11c83c5 100644 --- a/lua/mason-core/fs.lua +++ b/lua/mason-core/fs.lua @@ -86,7 +86,7 @@ local function make_module(uv) ---@param path string ---@param contents string - ---@param flags string|nil @Defaults to "w". + ---@param flags string|nil: Defaults to "w". function M.write_file(path, contents, flags) log.debug("fs: write_file", path) local fd = uv.fs_open(path, flags or "w", 438) @@ -112,7 +112,7 @@ local function make_module(uv) ---@alias ReaddirEntry {name: string, type: string} - ---@param path string @The full path to the directory to read. + ---@param path string: The full path to the directory to read. ---@return ReaddirEntry[] function M.readdir(path) log.trace("fs: fs_opendir", path) |
