summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Schlachter <t480-debian-git@schlachter.ca>2025-11-11 22:31:31 -0500
committerDavid Schlachter <t480-debian-git@schlachter.ca>2025-11-11 22:31:31 -0500
commit72dd239c67a977f8ee716f7388daabaf6c0d6e8e (patch)
tree2f9ae209ca67a80e2ab70754101baef9c79b56f7
parente1ffcccebd2a76fb69e3cbba9d17857a94ee61e2 (diff)
Clean up commentsmain
-rw-r--r--main.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.go b/main.go
index 097f7bd..59a4d7c 100644
--- a/main.go
+++ b/main.go
@@ -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]