From adef4fc3db7190e175c7c394f3d38740d6f46cc7 Mon Sep 17 00:00:00 2001 From: Eureka0225 <1441373096@qq.com> Date: Sat, 29 Aug 2020 21:32:46 +0800 Subject: [PATCH] Fix typo --- src/daemon/judge/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/daemon/judge/index.ts b/src/daemon/judge/index.ts index 68dc924..4a375aa 100644 --- a/src/daemon/judge/index.ts +++ b/src/daemon/judge/index.ts @@ -32,7 +32,7 @@ export async function judge( } let judger: JudgerBase; - console.log("Task typ: " + task.type); + console.log("Task type: " + task.type); if (task.type === ProblemType.Standard) { judger = new StandardJudger(testData, task.param as StandardJudgeParameter, task.priority); } else if (task.type === ProblemType.AnswerSubmission) { @@ -66,4 +66,4 @@ export async function judge( await judger.cleanup(); return { compile: compileResult, judge: judgeResult }; -} \ No newline at end of file +}