Merge pull request #129637 from jasondrogba/fix-comment

Fix incorrect function name in comment
This commit is contained in:
Kubernetes Prow Robot 2025-01-17 05:44:42 -08:00 committed by GitHub
commit f64b651eba
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -272,7 +272,7 @@ func getJobFromTemplate2(cj *batchv1.CronJob, scheduledTime time.Time) (*batchv1
return job, nil
}
// getTimeHash returns Unix Epoch Time in minutes
// getTimeHashInMinutes returns Unix Epoch Time in minutes
func getTimeHashInMinutes(scheduledTime time.Time) int64 {
return scheduledTime.Unix() / 60
}