Skip to content

Commit

Permalink
Merge pull request #2621 from jianliao82/patch-2
Browse files Browse the repository at this point in the history
fix typo
  • Loading branch information
crosbymichael committed Sep 13, 2018
2 parents 66b984e + 0120dec commit 49af788
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions client_test.go
Expand Up @@ -171,7 +171,7 @@ func TestNewClient(t *testing.T) {
t.Fatal("New() returned nil client")
}
if err := client.Close(); err != nil {
t.Errorf("client closed returned errror %v", err)
t.Errorf("client closed returned error %v", err)
}
}

Expand Down Expand Up @@ -340,6 +340,6 @@ func TestClientReconnect(t *testing.T) {
t.Fatal("containerd is not serving")
}
if err := client.Close(); err != nil {
t.Errorf("client closed returned errror %v", err)
t.Errorf("client closed returned error %v", err)
}
}
2 changes: 1 addition & 1 deletion metadata/buckets.go
Expand Up @@ -21,7 +21,7 @@ import (
digest "github.com/opencontainers/go-digest"
)

// The layout where a "/" delineates a bucket is desribed in the following
// The layout where a "/" delineates a bucket is described in the following
// section. Please try to follow this as closely as possible when adding
// functionality. We can bolster this with helpers and more structure if that
// becomes an issue.
Expand Down

0 comments on commit 49af788

Please sign in to comment.