docs: refine worker node code comment
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Tue, 22 Aug 2023 21:43:38 +0000 (23:43 +0200)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Tue, 22 Aug 2023 21:43:38 +0000 (23:43 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
src/pools/worker-node.ts

index b539cabd9af018bd71c8c8e27eba63eab755333a..359dc26c1c3649380572c7d6609961b534225863 100644 (file)
@@ -274,8 +274,11 @@ implements IWorkerNode<Worker, Data> {
 
   /**
    * Executes a function once at a time.
+   *
+   * @param fn - The function to execute.
+   * @param context - The context to bind the function to.
+   * @returns The function to execute.
    */
-
   private once (
     // eslint-disable-next-line @typescript-eslint/no-explicit-any
     fn: (...args: any[]) => void,