diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2024-06-15 01:04:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-15 07:04:27 +0800 |
commit | 6e28589e00a32045d5a62654151299802e40fdb0 (patch) | |
tree | b17f2803e215537655505c9992d647ebe2f54524 /runtime/lua/vim/_meta/lpeg.lua | |
parent | bcca597e175e4d5b6587dd3761c305a773369df8 (diff) | |
download | rneovim-6e28589e00a32045d5a62654151299802e40fdb0.tar.gz rneovim-6e28589e00a32045d5a62654151299802e40fdb0.tar.bz2 rneovim-6e28589e00a32045d5a62654151299802e40fdb0.zip |
docs: misc (#29229)
Co-authored-by: Ilia Choly <ilia.choly@gmail.com>
Co-authored-by: Jose Pedro Oliveira <jose.p.oliveira.oss@gmail.com>
Co-authored-by: Maria José Solano <majosolano99@gmail.com>
Co-authored-by: zeertzjq <zeertzjq@outlook.com>
Diffstat (limited to 'runtime/lua/vim/_meta/lpeg.lua')
-rw-r--r-- | runtime/lua/vim/_meta/lpeg.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/lua/vim/_meta/lpeg.lua b/runtime/lua/vim/_meta/lpeg.lua index 73b3375c82..39a894aaeb 100644 --- a/runtime/lua/vim/_meta/lpeg.lua +++ b/runtime/lua/vim/_meta/lpeg.lua @@ -2,7 +2,7 @@ error('Cannot require a meta file') -- These types were taken from https://github.com/LuaCATS/lpeg --- (based on revision e6789e28e5b91a4a277a2a03081d708c403a3e34) +-- (based on revision 82c6a8fc676bbc20722026afd952668f3919b11d) -- with types being renamed to include the vim namespace and with some descriptions made less verbose. --- @brief <pre>help @@ -32,7 +32,7 @@ vim.lpeg = {} --- @operator div(table): vim.lpeg.Capture --- @operator div(function): vim.lpeg.Capture --- @operator pow(number): vim.lpeg.Pattern ---- @operator mod(function): nil +--- @operator mod(function): vim.lpeg.Capture local Pattern = {} --- @alias vim.lpeg.Capture vim.lpeg.Pattern |