Skip to content

Commit

Permalink
Fix typo in log message
Browse files Browse the repository at this point in the history
  • Loading branch information
gingershaped committed Sep 16, 2024
1 parent 1ab55ea commit 4a350a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/latest/scripts/workers/runner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const dictPromise = Promise.all([

self.addEventListener("message", function(message: MessageEvent<RunRequest>) {
const request = message.data;
console.log(`Recieved run request (workerNumber ${request.workerNumber})`);
console.log(`Received run request (workerNumber ${request.workerNumber})`);
dictPromise.then(() => {
this.postMessage({
type: "started",
Expand Down

0 comments on commit 4a350a7

Please sign in to comment.