func()

in manager.go [310:315]


func (e *applyError) Error() string {
	if len(e.errors) == 1 {
		return fmt.Sprintf("there was an apply error: %s", e.errors[0].Error())
	}
	return fmt.Sprintf("there were %d errors", len(e.errors))
}