Update errors.go

Co-authored-by: John Roesler <johnrroesler@gmail.com>
This commit is contained in:
Yash Chauhan 2025-10-28 11:01:41 +05:30 committed by GitHub
parent 13eb49642d
commit ddfeae61ed
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ var (
ErrStartTimeLaterThanEndTime = errors.New("gocron: WithStartDateTime: start must not be later than end")
ErrStopTimeEarlierThanStartTime = errors.New("gocron: WithStopDateTime: end must not be earlier than start")
ErrWithStopTimeoutZeroOrNegative = errors.New("gocron: WithStopTimeout: timeout must be greater than 0")
ErrSchedulerMonitorNil = errors.New("gocron: scheduler monitor cannot be nil")
ErrWithSchedulerMonitorNil = errors.New("gocron: WithSchedulerMonitor: scheduler monitor cannot be nil")
)
// internal errors