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) } }