From cd5c8e9c2dc181cd624bdb10947a19197215d730 Mon Sep 17 00:00:00 2001 From: Justin Cormack Date: Fri, 25 Nov 2016 14:58:20 +0000 Subject: [PATCH] Fix grammar on error message Signed-off-by: Justin Cormack --- daemon/container_operations.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/daemon/container_operations.go b/daemon/container_operations.go index a219fbe4c0..5224308b7c 100644 --- a/daemon/container_operations.go +++ b/daemon/container_operations.go @@ -1028,7 +1028,7 @@ func (daemon *Daemon) ActivateContainerServiceBinding(containerName string) erro } sb := daemon.getNetworkSandbox(container) if sb == nil { - return fmt.Errorf("network sandbox not exists for container %s", containerName) + return fmt.Errorf("network sandbox does not exist for container %s", containerName) } return sb.EnableService() } @@ -1041,7 +1041,7 @@ func (daemon *Daemon) DeactivateContainerServiceBinding(containerName string) er } sb := daemon.getNetworkSandbox(container) if sb == nil { - return fmt.Errorf("network sandbox not exists for container %s", containerName) + return fmt.Errorf("network sandbox does not exist for container %s", containerName) } return sb.DisableService() }