fix(typo): overriden -> overridden (RE: PR #14159) (#15360)

This commit is contained in:
Oliver Marriott
2021-09-18 03:07:00 +10:00
committed by GitHub
parent d8de4eb685
commit d9f93e5642
4 changed files with 4 additions and 4 deletions

View File

@@ -533,7 +533,7 @@ describe('API', function()
nvim("notify", "hello world", 2, {})
end)
it('can be overriden', function()
it('can be overridden', function()
command("lua vim.notify = function(...) return 42 end")
eq(42, meths.exec_lua("return vim.notify('Hello world')", {}))
nvim("notify", "hello world", 4, {})