浏览代码

fix typo

Signed-off-by: Omri Shiv <Omri.Shiv@teradata.com>
Omri Shiv 6 年之前
父节点
当前提交
fe1083d462
共有 1 个文件被更改,包括 1 次插入1 次删除
  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)