aboutsummaryrefslogtreecommitdiffstats
path: root/lua/conform/fs.lua
diff options
context:
space:
mode:
authorSteven Arcangeli <stevearc@stevearc.com>2024-05-22 00:49:10 -0700
committerSteven Arcangeli <stevearc@stevearc.com>2024-05-22 13:06:33 -0700
commitf3b930db4964d60e255c8f9e37b7f2218dfc08cb (patch)
tree66b29ab4ffd7aa66d07f78a206eeb82e1ee5fe15 /lua/conform/fs.lua
parent9b26e81c4292106e68dda3e7b64473434fd5b3e0 (diff)
doc: add type annotations for setup() function
Diffstat (limited to 'lua/conform/fs.lua')
-rw-r--r--lua/conform/fs.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/conform/fs.lua b/lua/conform/fs.lua
index 187bd7c..d3b5fed 100644
--- a/lua/conform/fs.lua
+++ b/lua/conform/fs.lua
@@ -30,7 +30,7 @@ M.abspath = function(path)
return path
end
---- Returns true if candidate is a subpath of root, or if they are the same path.
+---Returns true if candidate is a subpath of root, or if they are the same path.
---@param root string
---@param candidate string
---@return boolean