diff --git a/components/engine/container/container_unix.go b/components/engine/container/container_unix.go index 7ee0a7e7da..592a6dc375 100644 --- a/components/engine/container/container_unix.go +++ b/components/engine/container/container_unix.go @@ -381,7 +381,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)