From f5b9c2c7d1eb3338a77430fe5cbead43819cbea8 Mon Sep 17 00:00:00 2001 From: sugoidogo Date: Mon, 1 Dec 2025 22:38:10 -0800 Subject: [PATCH] fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 451167a..ba4b212 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ const workerless=new WorkerlessPool() const results=[] for(const bigData of dataSet){ // keep in mind that your function will run in a fresh new scope, - // so any data you want it to use must me passed as an argument. + // so any data you want it to use must be passed as an argument. workerless.run((data)=>{ // any libraries will need to be imported in the new scope const analyze=(await import('analyze')).default