From 49abfa5992f3364d62b103e1c1c747857acc5d6e Mon Sep 17 00:00:00 2001 From: WangXiaoxiao <1141195807@qq.com> Date: Sat, 7 Jan 2023 14:40:10 +0800 Subject: [PATCH] client/v3: fix comment typo Signed-off-by: WangXiaoxiao <1141195807@qq.com> --- client/v3/options.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/v3/options.go b/client/v3/options.go index cdae1b16a2a..cc10a03d76d 100644 --- a/client/v3/options.go +++ b/client/v3/options.go @@ -23,7 +23,7 @@ import ( var ( // client-side handling retrying of request failures where data was not written to the wire or - // where server indicates it did not process the data. gRPC default is default is "WaitForReady(false)" + // where server indicates it did not process the data. gRPC default is "WaitForReady(false)" // but for etcd we default to "WaitForReady(true)" to minimize client request error responses due to // transient failures. defaultWaitForReady = grpc.WaitForReady(true)