整理代码习惯,常量字符串改用单引号,可能有遗漏

This commit is contained in:
MrZ626
2021-04-30 01:00:22 +08:00
parent 7676f32cf2
commit eda6c0d746
213 changed files with 2503 additions and 2499 deletions

View File

@@ -9,7 +9,7 @@ end
function TASK.update()
for i=#tasks,1,-1 do
local T=tasks[i]
if status(T.thread)=="dead"then
if status(T.thread)=='dead'then
rem(tasks,i)
else
assert(resume(T.thread))
@@ -19,7 +19,7 @@ end
function TASK.new(code,...)
local thread=coroutine.create(code)
resume(thread,...)
if status(thread)~="dead"then
if status(thread)~='dead'then
tasks[#tasks+1]={
thread=thread,
code=code,