From d0e605f0118c01b0a3c0236ae90d09b9b8788810 Mon Sep 17 00:00:00 2001 From: Dominik Pschenitschni Date: Fri, 17 Mar 2023 16:52:36 +0100 Subject: [PATCH] chore(praseSubtasksViaIndention): fix comment --- src/helpers/parseSubtasksViaIndention.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers/parseSubtasksViaIndention.ts b/src/helpers/parseSubtasksViaIndention.ts index 7e76bda0c..807301d5b 100644 --- a/src/helpers/parseSubtasksViaIndention.ts +++ b/src/helpers/parseSubtasksViaIndention.ts @@ -48,7 +48,7 @@ export function parseSubtasksViaIndention(taskTitles: string): TaskWithParent[] task.title = cleanupTitle(title.replace(spaceRegex, '')) task.parent = task.parent.replace(spaceRegex, '') if (task.project === null) { - // This allows to specify a list once for the parent task and inherit it to all subtasks + // This allows to specify a project once for the parent task and inherit it to all subtasks task.project = getProjectFromPrefix(task.parent) } }