@@ -186,7 +186,7 @@ export class Queue<
186
186
/**
187
187
* Adds a new job to the queue.
188
188
*
189
- * @param name - Name of the job to be added to the queue, .
189
+ * @param name - Name of the job to be added to the queue.
190
190
* @param data - Arbitrary data to append to the job.
191
191
* @param opts - Job options that affects how the job is going to be processed.
192
192
*/
@@ -319,7 +319,7 @@ export class Queue<
319
319
*
320
320
* @see removeRepeatableByKey
321
321
*
322
- * @param name - job name
322
+ * @param name - Job name
323
323
* @param repeatOpts -
324
324
* @param jobId -
325
325
* @returns
@@ -342,7 +342,7 @@ export class Queue<
342
342
*
343
343
* @see getRepeatableJobs
344
344
*
345
- * @param repeatJobKey - to the repeatable job.
345
+ * @param repeatJobKey - To the repeatable job.
346
346
* @returns
347
347
*/
348
348
async removeRepeatableByKey ( key : string ) : Promise < boolean > {
@@ -369,7 +369,7 @@ export class Queue<
369
369
* Updates the given job's progress.
370
370
*
371
371
* @param jobId - The id of the job to update
372
- * @param progress - number or object to be saved as progress.
372
+ * @param progress - Number or object to be saved as progress.
373
373
*/
374
374
async updateJobProgress (
375
375
jobId : string ,
@@ -382,8 +382,8 @@ export class Queue<
382
382
* Logs one row of job's log data.
383
383
*
384
384
* @param jobId - The job id to log against.
385
- * @param logRow - string with log data to be logged.
386
- * @param keepLogs - max number of log entries to keep (0 for unlimited).
385
+ * @param logRow - String with log data to be logged.
386
+ * @param keepLogs - Max number of log entries to keep (0 for unlimited).
387
387
*
388
388
* @returns The total number of log entries for this job so far.
389
389
*/
0 commit comments