aboutsummaryrefslogtreecommitdiff
path: root/runtime/lua/vim/fs.lua
diff options
context:
space:
mode:
authorJonas Strittmatter <40792180+smjonas@users.noreply.github.com>2023-06-10 03:37:05 +0200
committerGitHub <noreply@github.com>2023-06-10 09:37:05 +0800
commit7154f0c98619d0789618f370a6c7f81ee1775469 (patch)
tree956658ebedde01623921aa434a29a3a11deeac1c /runtime/lua/vim/fs.lua
parent5959b3c9222629c0e6020672ad5b13d0ed707c99 (diff)
downloadrneovim-7154f0c98619d0789618f370a6c7f81ee1775469.tar.gz
rneovim-7154f0c98619d0789618f370a6c7f81ee1775469.tar.bz2
rneovim-7154f0c98619d0789618f370a6c7f81ee1775469.zip
docs: fix typos (#23917)
Diffstat (limited to 'runtime/lua/vim/fs.lua')
-rw-r--r--runtime/lua/vim/fs.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/lua/vim/fs.lua b/runtime/lua/vim/fs.lua
index 5e63fb6237..c89147dbd2 100644
--- a/runtime/lua/vim/fs.lua
+++ b/runtime/lua/vim/fs.lua
@@ -72,7 +72,7 @@ function M.basename(file)
return file:match('[/\\]$') and '' or (file:match('[^\\/]*$'):gsub('\\', '/'))
end
---- Concatenate directories and/or file into a single path with normalization
+--- Concatenate directories and/or file paths into a single path with normalization
--- (e.g., `"foo/"` and `"bar"` get joined to `"foo/bar"`)
---
---@param ... string