[skip ci] Fix typo in etcd kv comment (#12091)

Signed-off-by: Edward Zeng <jie.zeng@zilliz.com>
This commit is contained in:
edward.zeng 2021-11-18 19:25:19 +08:00 committed by GitHub
parent 77264ae493
commit a92a6f34b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)