From a3e29a35f46e62a80eabd55f6fb2c6f084c74731 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 20 Mar 2026 16:28:06 +0000 Subject: [PATCH] docs: remove unhelpful inline comments from NextRun/NextRuns examples Co-authored-by: JohnRoesler <19351306+JohnRoesler@users.noreply.github.com> Agent-Logs-Url: https://github.com/go-co-op/gocron/sessions/9686e808-ae5e-4bc8-ad00-f78a1a7b079d --- example_test.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/example_test.go b/example_test.go index 3d449d1..8fb9389 100644 --- a/example_test.go +++ b/example_test.go @@ -267,7 +267,6 @@ func ExampleJob_nextRun() { ), ) - // NextRun is only available after the scheduler has been started. s.Start() nextRun, _ := j.NextRun() @@ -287,7 +286,6 @@ func ExampleJob_nextRuns() { ), ) - // NextRuns is only available after the scheduler has been started. s.Start() nextRuns, _ := j.NextRuns(5)