mirror of
https://github.com/neovim/neovim.git
synced 2025-12-15 19:05:40 +00:00
refactor(docs): remove unnecessary @private/@nodoc annotations (#33951)
* refactor(docs): remove `@private` annotations from local functions * refactor(docs): remove unnecessary `@nodoc` annotations
This commit is contained in:
committed by
GitHub
parent
8605f5655b
commit
bee45fc0e7
@@ -35,7 +35,6 @@ local M = {}
|
||||
--- @param fn F Function to memoize.
|
||||
--- @param weak? boolean Use a weak table (default `true`)
|
||||
--- @return F # Memoized version of {fn}
|
||||
--- @nodoc
|
||||
function M._memoize(hash, fn, weak)
|
||||
-- this is wrapped in a function to lazily require the module
|
||||
return require('vim.func._memoize')(hash, fn, weak)
|
||||
|
||||
Reference in New Issue
Block a user