From b28373638848c0532bea346f48083c7e65f2d8f6 Mon Sep 17 00:00:00 2001 From: Dan Sully <22371+dsully@users.noreply.github.com> Date: Sun, 23 Feb 2025 07:51:12 -0800 Subject: 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. --- runtime/lua/vim/_editor.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime/lua/vim/_editor.lua') 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 = { -- cgit