fix typo in error-message

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn 2016-05-25 13:26:20 +02:00
parent 126e5c403e
commit d191f5bd1e
No known key found for this signature in database
GPG key ID: 76698F39D527CE8C

View file

@ -8,7 +8,7 @@ var (
ErrBundleNotFound = errors.New("containerd: bundle not found")
ErrContainerNotFound = errors.New("containerd: container not found")
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 ")
ErrUnknownTask = errors.New("containerd: unknown task type")