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 +}