Change the ToEndpoints method comment to replace the Service with Endpoints (#3146)

This commit is contained in:
Xigang Wang 2019-08-19 21:34:09 +08:00 committed by Chris O'Haver
parent 6f028d0427
commit 81bba80159

View file

@ -43,7 +43,7 @@ type EndpointPort struct {
// EndpointsKey return a string using for the index.
func EndpointsKey(name, namespace string) string { return name + "." + namespace }
// ToEndpoints converts an api.Service to a *Service.
// ToEndpoints converts an api.Endpoints to a *Endpoints.
func ToEndpoints(obj interface{}) interface{} {
end, ok := obj.(*api.Endpoints)
if !ok {