time.Time.Month (method)

7 uses

	time (current package)
		time.go#L820: func (t Time) Month() Month {

	github.com/robfig/cron/v3
		spec.go#L97: 	for 1<<uint(t.Month())&s.Month == 0 {
		spec.go#L102: 			t = time.Date(t.Year(), t.Month(), 1, 0, 0, 0, 0, loc)
		spec.go#L107: 		if t.Month() == time.January {
		spec.go#L120: 			t = time.Date(t.Year(), t.Month(), t.Day(), 0, 0, 0, 0, loc)
		spec.go#L141: 			t = time.Date(t.Year(), t.Month(), t.Day(), t.Hour(), 0, 0, 0, loc)

	go.pact.im/x/flaky
		schedule.go#L77: 	midnight := time.Date(now.Year(), now.Month(), now.Day(), 0, 0, 0, 0, now.Location())