Fix various spelling errors (thanks codespell)

Also special thanks to timeless, for wordlessly reminding me to check
for typos.
This commit is contained in:
Kim Alvefur 2021-07-27 00:13:18 +02:00
parent 9ced42c9fb
commit c506269ff5
11 changed files with 11 additions and 11 deletions

View file

@ -17,7 +17,7 @@ describe("util.promise", function ()
p:next(cb);
assert.spy(cb).was_called(1);
end);
it("notifies on fulfilment of pending promises", function ()
it("notifies on fulfillment of pending promises", function ()
local r;
local p = promise.new(function (resolve)
r = resolve;