From c7981e77cfadcda7cacc143bb287178231d0b9ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Ritzl?= Date: Thu, 1 Aug 2019 07:20:48 +0200 Subject: [PATCH] Fixed typo in assert text --- monarch/monarch.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monarch/monarch.lua b/monarch/monarch.lua index 034d966..9ce8f05 100644 --- a/monarch/monarch.lua +++ b/monarch/monarch.lua @@ -70,7 +70,7 @@ end local function cowait(delay) local co = coroutine.running() - assert(co, "You must run this form within a coroutine") + assert(co, "You must run this from within a coroutine") timer.delay(delay, false, function() assert(coroutine.resume(co)) end)