This commit is contained in:
Justin M. Keyes
2025-08-24 19:43:48 -04:00
committed by GitHub
parent b2a136bd67
commit bccec33f5a
11 changed files with 94 additions and 96 deletions

View File

@@ -31,7 +31,7 @@ describe('vim.range', function()
eq(buf, range.end_.buf)
end)
it('create a range from two positions when optional fields are not matched', function()
it('creates a range from two positions when optional fields are not matched', function()
local range = exec_lua(function()
return vim.range(vim.pos(3, 5), vim.pos(4, 6))
end)
@@ -62,7 +62,7 @@ describe('vim.range', function()
eq(success, false)
end)
it('supports conversion between vim.Range and lsp.Range', function()
it('converts between vim.Range and lsp.Range', function()
local buf = exec_lua(function()
return vim.api.nvim_get_current_buf()
end)