From: Jérôme Benoit Date: Tue, 6 Jun 2023 21:10:45 +0000 (+0200) Subject: docs: spell fix in README.md X-Git-Tag: v2.5.4~11 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=b4db596975260a717304b2327554c9417a289f32;p=poolifier.git docs: spell fix in README.md Signed-off-by: Jérôme Benoit --- diff --git a/README.md b/README.md index 53d16e26..40ee0fc7 100644 --- a/README.md +++ b/README.md @@ -162,7 +162,7 @@ Node versions >= 16.14.x are supported. - `exitHandler` (optional) - A function that will listen for exit event on each worker - `workerChoiceStrategy` (optional) - The worker choice strategy to use in this pool: - - `WorkerChoiceStrategies.ROUND_ROBIN`: Submit tasks to worker in a round robbin fashion + - `WorkerChoiceStrategies.ROUND_ROBIN`: Submit tasks to worker in a round robin fashion - `WorkerChoiceStrategies.LEAST_USED`: Submit tasks to the worker with the minimum number of running and ran tasks - `WorkerChoiceStrategies.LEAST_BUSY`: Submit tasks to the worker with the minimum tasks total execution time - `WorkerChoiceStrategies.WEIGHTED_ROUND_ROBIN`: Submit tasks to worker by using a weighted round robin scheduling algorithm based on tasks execution time