mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 02:34:59 -07:00
docs: remove @private from VersionRange:has
This commit is contained in:
parent
738320188f
commit
66ea7658a6
@ -3998,6 +3998,7 @@ vim.version.range({spec}) *vim.version.range()*
|
|||||||
(`table?`) A table with the following fields:
|
(`table?`) A table with the following fields:
|
||||||
• {from} (`vim.Version`)
|
• {from} (`vim.Version`)
|
||||||
• {to}? (`vim.Version`)
|
• {to}? (`vim.Version`)
|
||||||
|
• {has} (`fun(self: vim.VersionRange, version: string|vim.Version)`)
|
||||||
|
|
||||||
See also: ~
|
See also: ~
|
||||||
• https://github.com/npm/node-semver#ranges
|
• https://github.com/npm/node-semver#ranges
|
||||||
|
@ -227,8 +227,7 @@ end
|
|||||||
---@field to? vim.Version
|
---@field to? vim.Version
|
||||||
local VersionRange = {}
|
local VersionRange = {}
|
||||||
|
|
||||||
--- @private
|
---@nodoc
|
||||||
---
|
|
||||||
---@param version string|vim.Version
|
---@param version string|vim.Version
|
||||||
function VersionRange:has(version)
|
function VersionRange:has(version)
|
||||||
if type(version) == 'string' then
|
if type(version) == 'string' then
|
||||||
|
Loading…
Reference in New Issue
Block a user