From 31194a853d4e6e5dc715269a58fe1f214c84276e Mon Sep 17 00:00:00 2001 From: lihaowei <haoweili35@gmail.com> Date: Sun, 9 Aug 2020 10:58:05 +0800 Subject: [PATCH] Correct words and Format codes --- protocol/dubbo/client.go | 2 +- registry/nacos/listener.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/protocol/dubbo/client.go b/protocol/dubbo/client.go index 9f70d9377..f020ec934 100644 --- a/protocol/dubbo/client.go +++ b/protocol/dubbo/client.go @@ -193,7 +193,7 @@ type Response struct { atta map[string]string } -// nolint +// NewResponse create a new Response. func NewResponse(reply interface{}, atta map[string]string) *Response { return &Response{ reply: reply, diff --git a/registry/nacos/listener.go b/registry/nacos/listener.go index 669900736..67c35d1ab 100644 --- a/registry/nacos/listener.go +++ b/registry/nacos/listener.go @@ -132,7 +132,7 @@ func (nl *nacosListener) Callback(services []model.SubscribeService, err error) instance := generateInstance(services[i]) newInstanceMap[host] = instance if old, ok := nl.instanceMap[host]; !ok { - // instance is not exist in cache, add it to cache + // instance does not exist in cache, add it to cache addInstances = append(addInstances, instance) } else { // instance is not different from cache, update it to cache @@ -144,7 +144,7 @@ func (nl *nacosListener) Callback(services []model.SubscribeService, err error) for host, inst := range nl.instanceMap { if _, ok := newInstanceMap[host]; !ok { - // cache instance is not exist in new instance list, remove it from cache + // cache instance does not exist in new instance list, remove it from cache delInstances = append(delInstances, inst) } } -- GitLab