From ce56cab766fec62df227baff380e5ed39e8bb59f Mon Sep 17 00:00:00 2001 From: Niggl Date: Fri, 10 Jul 2020 22:36:05 +0200 Subject: [PATCH] Corrected some copy-paste errors --- src/app/components/tabels/task/task-table.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/components/tabels/task/task-table.component.ts b/src/app/components/tabels/task/task-table.component.ts index 283c7b8..ad9c0bb 100644 --- a/src/app/components/tabels/task/task-table.component.ts +++ b/src/app/components/tabels/task/task-table.component.ts @@ -122,7 +122,7 @@ export class TaskTableComponent extends TableComponentBase { //#region taskTableFunctions /** * Deletes a task by calling the delete method via the backendService and removing it from the tabel's items array. - * @param userstory task that will be deleted + * @param task task that will be deleted */ public deleteTask(task: ScrumTask) { this.backendService.deleteTask(task).subscribe((response) => {