diff options
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -39,7 +39,7 @@ type InputLine struct { type TaskAddingJob struct { Schedule cron.Schedule Task cron.Job - EntryID cron.EntryID // this doesn't fit super well, but we'll figure that out soon I guess + EntryID cron.EntryID Delete bool } @@ -194,7 +194,7 @@ func readInput(p string) error { return fmt.Errorf("scanning: %w", err) } - // Mark stuff that we previously saw, but is now missing, for pruning. + // Mark for pruning any tasks that we previously saw, but are now missing. for k := range previousInput { if _, ok := currentInput[k]; !ok { v := jobsFromInput[k] |
