diff --git a/x-pack/plugins/task_manager/server/task_scheduling.ts b/x-pack/plugins/task_manager/server/task_scheduling.ts index e4a6f8c7c12fb9..1fddc44c9e4b55 100644 --- a/x-pack/plugins/task_manager/server/task_scheduling.ts +++ b/x-pack/plugins/task_manager/server/task_scheduling.ts @@ -69,7 +69,7 @@ export interface BulkUpdateSchedulesResult { tasks: ConcreteTaskInstance[]; /** - * list of failed tasks and error caused failure + * list of failed tasks and errors caused failure */ errors: Array<{ task: ConcreteTaskInstance; error: Error }>; } @@ -131,9 +131,9 @@ export class TaskScheduling { /** * Bulk updates schedules for tasks by ids. * - * @param taskIds string[] - list of task ids - * @param schedule IntervalSchedule - new schedule - * @returns {Promise} + * @param {string[]} taskIds - list of task ids + * @param {IntervalSchedule} schedule - new schedule + * @returns {Promise} */ public async bulkUpdateSchedules( taskIds: string[],