diff options
| author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2024-03-12 06:51:53 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-12 13:51:53 +0800 |
| commit | a74e869ffa503cc9c2d21836e24fec7a7ffca147 (patch) | |
| tree | 156cd105df32c5dfa1a572c34bdb739378e1d57f /src/nvim/generators | |
| parent | ac8cd5368db83cced9bc049ceb50c21cb8a4f743 (diff) | |
| download | rneovim-a74e869ffa503cc9c2d21836e24fec7a7ffca147.tar.gz rneovim-a74e869ffa503cc9c2d21836e24fec7a7ffca147.tar.bz2 rneovim-a74e869ffa503cc9c2d21836e24fec7a7ffca147.zip | |
docs: small fixes (#27364)
Co-authored-by: C.D. MacEachern <craig.daniel.maceachern@gmail.com>
Co-authored-by: Ynda Jas <yndajas@gmail.com>
Co-authored-by: Owen Hines <TheOdd@users.noreply.github.com>
Co-authored-by: Wanten <41904684+WantenMN@users.noreply.github.com>
Co-authored-by: lukasvrenner <118417051+lukasvrenner@users.noreply.github.com>
Co-authored-by: cuinix <915115094@qq.com>
Diffstat (limited to 'src/nvim/generators')
| -rw-r--r-- | src/nvim/generators/gen_api_dispatch.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/generators/gen_api_dispatch.lua b/src/nvim/generators/gen_api_dispatch.lua index 04b4363e42..e9bc5e5fe3 100644 --- a/src/nvim/generators/gen_api_dispatch.lua +++ b/src/nvim/generators/gen_api_dispatch.lua @@ -259,7 +259,7 @@ put('version') fixdict(1 + #version) for _, item in ipairs(version) do -- NB: all items are mandatory. But any error will be less confusing - -- with placholder vim.NIL (than invalid mpack data) + -- with placeholder vim.NIL (than invalid mpack data) put(item[1], item[2] or vim.NIL) end put('build', version_build) |