Skip to content

Commit 576767d

Browse files
committed
Fix casing on NoYield error message
1 parent 346d2e4 commit 576767d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/NoYield.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ local function resultHandler(co, ok, ...)
1414
end
1515

1616
if coroutine.status(co) ~= "dead" then
17-
error(debug.traceback(co, "Attempted to yield inside Changed event!"), 2)
17+
error(debug.traceback(co, "Attempted to yield inside changed event!"), 2)
1818
end
1919

2020
return ...

0 commit comments

Comments
 (0)