aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc
diff options
context:
space:
mode:
authorLewis Russell <lewis6991@gmail.com>2024-10-31 14:54:59 +0000
committerLewis Russell <lewis6991@gmail.com>2024-10-31 15:20:29 +0000
commit086e598a6ea4df20c093e3c6c83fead51b530aa0 (patch)
tree50729cef719f588bfa807af9b8bb26f871fb9715 /runtime/doc
parent8d68d883a9656fd7cf7be1db7ecf4e6ba674995c (diff)
downloadrneovim-086e598a6ea4df20c093e3c6c83fead51b530aa0.tar.gz
rneovim-086e598a6ea4df20c093e3c6c83fead51b530aa0.tar.bz2
rneovim-086e598a6ea4df20c093e3c6c83fead51b530aa0.zip
refactor(loader): use the term stat instead of hash
Diffstat (limited to 'runtime/doc')
-rw-r--r--runtime/doc/lua.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/lua.txt b/runtime/doc/lua.txt
index c873523d9d..74a0ba821a 100644
--- a/runtime/doc/lua.txt
+++ b/runtime/doc/lua.txt
@@ -2519,8 +2519,8 @@ vim.loader.find({modname}, {opts}) *vim.loader.find()*
(`table[]`) A list of objects with the following fields:
• {modpath} (`string`) Path of the module
• {modname} (`string`) Name of the module
- • {stat}? (`uv.uv_fs_t`) The fs_stat of the module path. Won't be
- returned for `modname="*"`
+ • {stat}? (`uv.fs_stat.result`) The fs_stat of the module path. Won't
+ be returned for `modname="*"`
vim.loader.reset({path}) *vim.loader.reset()*
WARNING: This feature is experimental/unstable.