refactor: spell fixes
authorJérôme Benoit <jerome.benoit@sap.com>
Mon, 29 May 2023 21:07:10 +0000 (23:07 +0200)
committerJérôme Benoit <jerome.benoit@sap.com>
Mon, 29 May 2023 21:07:10 +0000 (23:07 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
CHANGELOG.md
src/pools/selection-strategies/selection-strategies-types.ts
tests/pools/selection-strategies/selection-strategies.test.js

index f5c05bb17dc5dde98e6fb5def5c13e341be2b983..200e61ddef934198b82a2d45515e9b86c7c5b7b0 100644 (file)
@@ -99,8 +99,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 
 ### Added
 
-- Use monotonic high resolution timer for worker tasks run time.
-- Add worker tasks median run time to statistics.
+- Use monotonic high resolution timer for worker tasks runtime.
+- Add worker tasks median runtime to statistics.
 - Add worker tasks queue (experimental).
 
 ## [2.4.4] - 2023-04-07
index 659706cefca3b91d71db31ede78ce63870a506f6..ddfe915d2e3c215f9365693c81754155c2c10bc5 100644 (file)
@@ -55,15 +55,15 @@ export interface WorkerChoiceStrategyOptions {
  */
 export interface RequiredStatistics {
   /**
-   * Require tasks run time.
+   * Require tasks runtime.
    */
   runTime: boolean
   /**
-   * Require tasks average run time.
+   * Require tasks average runtime.
    */
   avgRunTime: boolean
   /**
-   * Require tasks median run time.
+   * Require tasks median runtime.
    */
   medRunTime: boolean
 }
index 11a9aab3caa2001b799d5a8e48526481cef7da19..33d2114c09bc4e02eb45f2f46a7b5d13537e9911 100644 (file)
@@ -466,7 +466,7 @@ describe('Selection strategies test suite', () => {
     await pool.destroy()
   })
 
-  it('Verify FAIR_SHARE strategy can be run in a dynamic pool with median run time statistic', async () => {
+  it('Verify FAIR_SHARE strategy can be run in a dynamic pool with median runtime statistic', async () => {
     const pool = new DynamicThreadPool(
       min,
       max,
@@ -671,7 +671,7 @@ describe('Selection strategies test suite', () => {
     await pool.destroy()
   })
 
-  it('Verify WEIGHTED_ROUND_ROBIN strategy can be run in a dynamic pool with median run time statistic', async () => {
+  it('Verify WEIGHTED_ROUND_ROBIN strategy can be run in a dynamic pool with median runtime statistic', async () => {
     const pool = new DynamicThreadPool(
       min,
       max,