summaryrefslogtreecommitdiffstatshomepage
path: root/runtime/lua/vim/loader.lua
diff options
context:
space:
mode:
authorLewis Russell <lewis6991@gmail.com>2025-06-05 11:31:51 +0100
committerLewis Russell <me@lewisr.dev>2025-06-06 15:36:48 +0100
commit3b6084ddf4f0d49fb0e5d135919c9daacea2a46d (patch)
treec46454da48ec05e345c953f4e172e52dff8bef52 /runtime/lua/vim/loader.lua
parent4c333fdbb7bee299f36624b429f5c065470e421d (diff)
fix: type fixes
Type fixes caught by emmylua
Diffstat (limited to 'runtime/lua/vim/loader.lua')
-rw-r--r--runtime/lua/vim/loader.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/lua/vim/loader.lua b/runtime/lua/vim/loader.lua
index c7158673fe..d6945f3f02 100644
--- a/runtime/lua/vim/loader.lua
+++ b/runtime/lua/vim/loader.lua
@@ -66,7 +66,7 @@ local indexed = {}
--- @return uv.fs_stat.result?
local function fs_stat_cached(path)
if not fs_stat_cache then
- return uv.fs_stat(path)
+ return (uv.fs_stat(path))
end
if not fs_stat_cache[path] then