From 16b15add47bbdb453def73896656976c86cbaa0a Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Thu, 4 Nov 2021 00:35:20 -0400 Subject: [PATCH] spelling: coroutines --- tests/conformance/closure.lua | 2 +- tests/conformance/coroutine.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/conformance/closure.lua b/tests/conformance/closure.lua index 79f8d9c2..aac42c56 100644 --- a/tests/conformance/closure.lua +++ b/tests/conformance/closure.lua @@ -319,7 +319,7 @@ end assert(a == 5^4) --- access to locals of collected corroutines +-- access to locals of collected coroutines local C = {}; setmetatable(C, {__mode = "kv"}) local x = coroutine.wrap (function () local a = 10 diff --git a/tests/conformance/coroutine.lua b/tests/conformance/coroutine.lua index 73c3833d..75329642 100644 --- a/tests/conformance/coroutine.lua +++ b/tests/conformance/coroutine.lua @@ -185,7 +185,7 @@ end assert(a == 5^4) --- access to locals of collected corroutines +-- access to locals of collected coroutines local C = {}; setmetatable(C, {__mode = "kv"}) local x = coroutine.wrap (function () local a = 10