Browse Source

fix typo

Signed-off-by: Omri Shiv <Omri.Shiv@teradata.com>
Omri Shiv 6 years ago
parent
commit
fe1083d462
1 changed files with 1 additions and 1 deletions
  1. 1 1
      container/container_unix.go

+ 1 - 1
container/container_unix.go

@@ -382,7 +382,7 @@ func (container *Container) DetachAndUnmount(volumeEventLog func(name, action st
 
 	for _, mountPath := range mountPaths {
 		if err := mount.Unmount(mountPath); err != nil {
-			logrus.Warnf("%s unmountVolumes: Failed to do lazy umount fo volume '%s': %v", container.ID, mountPath, err)
+			logrus.Warnf("%s unmountVolumes: Failed to do lazy umount for volume '%s': %v", container.ID, mountPath, err)
 		}
 	}
 	return container.UnmountVolumes(volumeEventLog)