浏览代码

Merge pull request #28560 from akshaykarle/master

fix a typo
Sebastiaan van Stijn 8 年之前
父节点
当前提交
d9612db974
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      libcontainerd/remote_unix.go

+ 1 - 1
libcontainerd/remote_unix.go

@@ -67,7 +67,7 @@ type remote struct {
 func New(stateDir string, options ...RemoteOption) (_ Remote, err error) {
 func New(stateDir string, options ...RemoteOption) (_ Remote, err error) {
 	defer func() {
 	defer func() {
 		if err != nil {
 		if err != nil {
-			err = fmt.Errorf("Failed to connect to containerd. Please make sure containerd is installed in your PATH or you have specificed the correct address. Got error: %v", err)
+			err = fmt.Errorf("Failed to connect to containerd. Please make sure containerd is installed in your PATH or you have specified the correct address. Got error: %v", err)
 		}
 		}
 	}()
 	}()
 	r := &remote{
 	r := &remote{