docs: add changelog entry
[poolifier.git] / src / worker / abstract-worker.ts
index 242c46982236357626ae50fae5f3a33d7c3f04eb..6e17c9ed92f53a3612d214f782d38019875ed46c 100644 (file)
@@ -37,7 +37,7 @@ export abstract class AbstractWorker<
   Response = unknown
 > extends AsyncResource {
   /**
-   * Worker Id.
+   * Worker id.
    */
   protected abstract id: number
   /**
@@ -206,7 +206,7 @@ export abstract class AbstractWorker<
    * Handles an error and convert it to a string so it can be sent back to the main worker.
    *
    * @param e - The error raised by the worker.
-   * @returns Message of the error.
+   * @returns The error message.
    */
   protected handleError (e: Error | string): string {
     return e as string