Refine eslint configuration
[poolifier.git] / src / pools / pool.ts
index 6f677da8ba64d695e5b4b82f904f4b21ef1c7208..c6fbce43aba1d6a31d825a1eff80db8aae49ee12 100644 (file)
@@ -27,7 +27,7 @@ export interface PoolOptions<Worker> {
    */
   exitHandler?: ExitHandler<Worker>
   /**
-   * The work choice strategy to use in this pool.
+   * The worker choice strategy to use in this pool.
    */
   workerChoiceStrategy?: WorkerChoiceStrategy
   /**
@@ -46,7 +46,7 @@ export interface PoolOptions<Worker> {
  */
 export interface IPool<Data = unknown, Response = unknown> {
   /**
-   * Perform the task specified in the constructor with the data parameter.
+   * Performs the task specified in the constructor with the data parameter.
    *
    * @param data The input for the specified task. This can only be serializable data.
    * @returns Promise that will be resolved when the task is successfully completed.
@@ -57,7 +57,7 @@ export interface IPool<Data = unknown, Response = unknown> {
    */
   destroy(): Promise<void>
   /**
-   * Set the worker choice strategy in this pool.
+   * Sets the worker choice strategy in this pool.
    *
    * @param workerChoiceStrategy The worker choice strategy.
    */