From a92a6f34b4acfa5813bf6676f5497bd091b1d644 Mon Sep 17 00:00:00 2001 From: "edward.zeng" Date: Thu, 18 Nov 2021 19:25:19 +0800 Subject: [PATCH] [skip ci] Fix typo in etcd kv comment (#12091) Signed-off-by: Edward Zeng --- 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 1bf4d1babd..ff46f66cc7 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 prifix. +// LoadWithRevision returns keys, values and revision by given key prefix. func (kv *EtcdKV) LoadWithRevision(key string) ([]string, []string, int64, error) { start := time.Now() key = path.Join(kv.rootPath, key)