Merge pull request #248 from thaJeztah/fix-typo-in-error-message

fix typo in error-message
This commit is contained in:
Kenfe-Mickaël Laventure 2016-05-25 07:35:08 -07:00
commit 76dd6710dc

View file

@ -8,7 +8,7 @@ var (
ErrBundleNotFound = errors.New("containerd: bundle not found") ErrBundleNotFound = errors.New("containerd: bundle not found")
ErrContainerNotFound = errors.New("containerd: container not found") ErrContainerNotFound = errors.New("containerd: container not found")
ErrContainerExists = errors.New("containerd: container already exists") ErrContainerExists = errors.New("containerd: container already exists")
ErrProcessNotFound = errors.New("containerd: processs not found for container") ErrProcessNotFound = errors.New("containerd: process not found for container")
ErrUnknownContainerStatus = errors.New("containerd: unknown container status ") ErrUnknownContainerStatus = errors.New("containerd: unknown container status ")
ErrUnknownTask = errors.New("containerd: unknown task type") ErrUnknownTask = errors.New("containerd: unknown task type")