chore(parseSubtasksViaIndention): fix comment #3259

Merged
konrad merged 1 commits from chore-fix-comment-typo into main 2023-03-18 07:41:39 +00:00
1 changed files with 1 additions and 1 deletions

View File

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