From de87fc9910ee5ce6a84b74cf9cd17bb046d86d01 Mon Sep 17 00:00:00 2001 From: Felix Yan Date: Fri, 2 Apr 2021 14:00:52 +0800 Subject: [PATCH] Correct a typo in website/server/models/challenge.js (#13146) --- website/server/models/challenge.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/server/models/challenge.js b/website/server/models/challenge.js index f4b03a0922..f391e472c3 100644 --- a/website/server/models/challenge.js +++ b/website/server/models/challenge.js @@ -403,7 +403,7 @@ schema.methods.closeChal = async function closeChal (broken = {}) { } } - // Run some operations in the background withouth blocking the thread + // Run some operations in the background without blocking the thread const backgroundTasks = [ // And it's tasks Tasks.Task.remove({ 'challenge.id': challenge._id, userId: { $exists: false } }).exec(),