Skip to content

Commit fbd5322

Browse files
Merge pull request #1327 from marcjulian/patch-2
docs(task-scheduling): remove closing bracket
2 parents 1cbb42a + b78ba2f commit fbd5322

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/techniques/task-scheduling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ clearTimeout(timeout);
338338
addTimeout(name: string, seconds: string) {
339339
const callback = () => {
340340
this.logger.warn(`Timeout ${name} executing after (${seconds})!`);
341-
});
341+
};
342342

343343
const timeout = setTimeout(callback, seconds);
344344
this.scheduler.addTimeout(name, timeout);

0 commit comments

Comments
 (0)