diff options
author | Jongwook Choi <wookayin@gmail.com> | 2023-12-28 18:00:30 -0500 |
---|---|---|
committer | Jongwook Choi <wookayin@gmail.com> | 2024-01-02 11:16:48 -0500 |
commit | 67f53323446d45bad7a22e92493f6402316a8ba1 (patch) | |
tree | a7bdbd34d5b69a8e8b02a11506337ec577bca281 /runtime/lua/vim/shared.lua | |
parent | 1a31d4cf2b88e9f677d7a2f23b10e4dacf803a9d (diff) | |
download | rneovim-67f53323446d45bad7a22e92493f6402316a8ba1.tar.gz rneovim-67f53323446d45bad7a22e92493f6402316a8ba1.tar.bz2 rneovim-67f53323446d45bad7a22e92493f6402316a8ba1.zip |
fix(docs): clean up non-docstring comments for vimdoc gen
These non-docstring comments can be included into doxygen's brief
description and then appear in the succeeding function documentation.
Diffstat (limited to 'runtime/lua/vim/shared.lua')
-rw-r--r-- | runtime/lua/vim/shared.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/lua/vim/shared.lua b/runtime/lua/vim/shared.lua index bbbc888727..fd795aae49 100644 --- a/runtime/lua/vim/shared.lua +++ b/runtime/lua/vim/shared.lua @@ -579,7 +579,7 @@ function vim.tbl_isarray(t) local count = 0 for k, _ in pairs(t) do - --- Check if the number k is an integer + -- Check if the number k is an integer if type(k) == 'number' and k == math.floor(k) then count = count + 1 else |