diff options
author | Dan Sully <22371+dsully@users.noreply.github.com> | 2025-02-23 07:51:12 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-23 07:51:12 -0800 |
commit | b28373638848c0532bea346f48083c7e65f2d8f6 (patch) | |
tree | 6758807386a612cfc53a4eb235efae069467aafa /runtime/lua/vim/_editor.lua | |
parent | 4a0ee22e77d169191e7163d1340b835145f4dac9 (diff) | |
download | rneovim-b28373638848c0532bea346f48083c7e65f2d8f6.tar.gz rneovim-b28373638848c0532bea346f48083c7e65f2d8f6.tar.bz2 rneovim-b28373638848c0532bea346f48083c7e65f2d8f6.zip |
fix(lua): `@private` => `@nodoc` #32587
Problem:
vim.log.levels.* and vim.opt_local are marked `@private` but they should be `@nodoc`.
Solution:
Fix the annotation.
Diffstat (limited to 'runtime/lua/vim/_editor.lua')
-rw-r--r-- | runtime/lua/vim/_editor.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/lua/vim/_editor.lua b/runtime/lua/vim/_editor.lua index a77ea9bb91..94168bea5d 100644 --- a/runtime/lua/vim/_editor.lua +++ b/runtime/lua/vim/_editor.lua @@ -56,7 +56,7 @@ vim._extra = { inspect_pos = true, } ---- @private +--- @nodoc vim.log = { --- @enum vim.log.levels levels = { |