*: fix spelling issues (codespell).

Signed-off-by: Dmitry Smirnov <onlyjob@member.fsf.org>
This commit is contained in:
Dmitry Smirnov
2015-09-11 08:06:56 +10:00
parent 1de63deca4
commit b2f4a5f587
15 changed files with 17 additions and 17 deletions

View File

@@ -16,6 +16,6 @@ package client
// Discoverer is an interface that wraps the Discover method.
type Discoverer interface {
// Dicover looks up the etcd servers for the domain.
// Discover looks up the etcd servers for the domain.
Discover(domain string) ([]string, error)
}

View File

@@ -84,7 +84,7 @@ func TestSRVDiscover(t *testing.T) {
if service == "etcd-server" {
return "", tt.withoutSSL, nil
}
return "", nil, errors.New("Unkown service in mock")
return "", nil, errors.New("Unknown service in mock")
}
d := NewSRVDiscover()