clarify a comment

This commit is contained in:
Kartik K. Agaram 2023-04-15 10:12:32 -07:00
parent 967950a59f
commit b6cb27ddf2

View File

@ -345,7 +345,7 @@ end
-- return values:
-- all well -> true, ...
-- load failed -> nil, error message
-- run failed -> false, error message
-- run (pcall) failed -> false, error message
function live.eval(buf)
-- We assume a program is either correct with 'return' prefixed xor not.
-- Is this correct? Who knows! But the Lua REPL does this as well.