client: fix clusterError typo in README

It helps users to use client better.
release-2.2
Yicheng Qin 2015-08-13 16:38:09 -07:00
parent fefb273389
commit 5eed141d54
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ if err != nil {
// ctx is canceled by another routine
} else if err == context.DeadlineExceeded {
// ctx is attached with a deadline and it exceeded
} else if cerr, ok := err.(ClusterError); ok {
} else if cerr, ok := err.(*client.ClusterError); ok {
// process (cerr.Errors)
} else {
// bad cluster endpoints, which are not etcd servers