From e47a651be429474c1ff28e7cafd4d55f2f949190 Mon Sep 17 00:00:00 2001 From: cxytz01 Date: Thu, 23 Dec 2021 14:41:52 +0800 Subject: [PATCH] [skip e2e] Grammar correction (#14057) Signed-off-by: cxytz01 --- internal/kv/etcd/etcd_kv.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/kv/etcd/etcd_kv.go b/internal/kv/etcd/etcd_kv.go index 30a788e590..f78b76551f 100644 --- a/internal/kv/etcd/etcd_kv.go +++ b/internal/kv/etcd/etcd_kv.go @@ -171,7 +171,7 @@ func (kv *EtcdKV) MultiLoad(keys []string) ([]string, error) { return result, nil } -// LoadWithRevision returns keys, values and revision by given key prefix. +// LoadWithRevision returns keys, values and revision with given key prefix. func (kv *EtcdKV) LoadWithRevision(key string) ([]string, []string, int64, error) { start := time.Now() key = path.Join(kv.rootPath, key)