spelling: doesn't

This commit is contained in:
Josh Soref 2021-11-04 00:35:22 -04:00
parent 33ff0543e1
commit 2ce48da92a

View file

@ -2582,7 +2582,7 @@ TEST_CASE_FIXTURE(Fixture, "toposort_doesnt_break_mutual_recursion")
--!strict
local x = nil
function f() g() end
-- make sure print(x) doen't get toposorted here, breaking the mutual block
-- make sure print(x) doesn't get toposorted here, breaking the mutual block
function g() x = f end
print(x)
)");