docs: refinements
authorJérôme Benoit <jerome.benoit@sap.com>
Sat, 1 Jul 2023 09:42:37 +0000 (11:42 +0200)
committerJérôme Benoit <jerome.benoit@sap.com>
Sat, 1 Jul 2023 09:42:37 +0000 (11:42 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
README.md
benchmarks/README.md

index d16fe9469287cde778ae05a224700a6b8330986a..ee40061d62060a17159ce4a3bf2953adb956db61 100644 (file)
--- a/README.md
+++ b/README.md
@@ -83,7 +83,7 @@ Please consult our [general guidelines](#general-guidance).
 Node pool contains two [worker-threads](https://nodejs.org/api/worker_threads.html#worker_threads_worker_threads)/[cluster worker](https://nodejs.org/api/cluster.html#cluster_class_worker) pool implementations, you don't have to deal with worker-threads/cluster worker complexity.  
 The first implementation is a static worker pool, with a defined number of workers that are started at creation time and will be reused.  
 The second implementation is a dynamic worker pool with a number of worker started at creation time (these workers will be always active and reused) and other workers created when the load will increase (with an upper limit, these workers will be reused when active), the new created workers will be stopped after a configurable period of inactivity.  
-You have to implement your worker extending the ThreadWorker or ClusterWorker class.
+You have to implement your worker by extending the ThreadWorker or ClusterWorker class.
 
 ## Installation
 
index 5a2db39c6a85002d21bd6b798538cb450762f559..6558913e226555d4126e1b8ae584c879c00ade81 100644 (file)
@@ -12,7 +12,7 @@ The [versus-external-pools](./versus-external-pools) folder contains benchmarks
 To compare poolifier pools performance vs other pools performance we chose to use [hyperfine](https://github.com/sharkdp/hyperfine).  
 We chose to use this tool because it allows to run isolated Node.js processes so each pool does not impact each other.
 
-- External pools with which we compared the poolifier results:
+- External pools with which we compare the poolifier results:
 
   - [piscina](https://github.com/piscinajs/piscina)
   - [tinypool](https://github.com/tinylibs/tinypool)