The first letter should be small in errors.New

This commit is contained in:
YuPengZTE 2016-09-01 11:08:15 +08:00
parent f839c5ffdf
commit 9cc6052655

View File

@ -21,8 +21,8 @@ import (
)
var (
NoSuchPodErr = errors.New("No such pod exists")
NoSuchTaskErr = errors.New("No such task exists")
NoSuchPodErr = errors.New("no such pod exists")
NoSuchTaskErr = errors.New("no such task exists")
ReconciliationCancelledErr = errors.New("explicit task reconciliation cancelled")
NoSuitableOffersErr = errors.New("No suitable offers for pod/task")
NoSuitableOffersErr = errors.New("no suitable offers for pod/task")
)