refactor: refine worker options scope
[poolifier.git] / src / pools / abstract-pool.ts
index 68e833710f802d7bd30f52bab9955dc373072c35..97225246cde2e8baab84cd2a60968ca7d09aa079 100644 (file)
@@ -248,11 +248,12 @@ export abstract class AbstractPool<
   /**
    * Setup hook that can be overridden by a Poolifier pool implementation
    * to run code before workers are created in the abstract constructor.
+   * Can be overridden
    *
    * @virtual
    */
   protected setupHook (): void {
-    // Can be overridden
+    // Intentionally empty
   }
 
   /**