Fix spelling of 'existent'

Signed-off-by: Bryan Boreham <bjboreham@gmail.com>
Upstream-commit: 899caaca9c990067d541231c6d288de89dbb79e7
Component: engine
This commit is contained in:
Bryan Boreham
2015-11-25 13:45:37 +00:00
parent eb58bc2fc0
commit 89ca8a3104
3 changed files with 5 additions and 5 deletions

View File

@ -66,7 +66,7 @@ func (m *MountPoint) Setup() (string, error) {
return "", err
}
if runtime.GOOS != "windows" { // Windows does not have deprecation issues here
logrus.Warnf("Auto-creating non-existant volume host path %s, this is deprecated and will be removed soon", m.Source)
logrus.Warnf("Auto-creating non-existent volume host path %s, this is deprecated and will be removed soon", m.Source)
if err := system.MkdirAll(m.Source, 0755); err != nil {
return "", err
}