We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d15da3 commit 7d7e7c3Copy full SHA for 7d7e7c3
doc/api/async_context.md
@@ -597,7 +597,7 @@ export default class WorkerPool extends EventEmitter {
597
}
598
599
addNewWorker() {
600
- const worker = new Worker(new URL('task_processer.js', import.meta.url));
+ const worker = new Worker(new URL('task_processor.js', import.meta.url));
601
worker.on('message', (result) => {
602
// In case of success: Call the callback that was passed to `runTask`,
603
// remove the `TaskInfo` associated with the Worker, and mark it as free
0 commit comments