This commit is contained in:
Lukasz Piepiora 2024-12-18 21:06:46 +02:00 committed by GitHub
commit 0533c85da1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -3998,6 +3998,7 @@ vim.version.range({spec}) *vim.version.range()*
(`table?`) A table with the following fields:
• {from} (`vim.Version`)
• {to}? (`vim.Version`)
• {has} (`fun(self: vim.VersionRange, version: string|vim.Version)`)
See also: ~
• https://github.com/npm/node-semver#ranges

View File

@ -227,8 +227,7 @@ end
---@field to? vim.Version
local VersionRange = {}
--- @private
---
---@nodoc
---@param version string|vim.Version
function VersionRange:has(version)
if type(version) == 'string' then