mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Fix typo in error-message.
This fixes a small typo in the errormessage for memory-swap. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
3ec6959240
commit
5f699a465d
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ func (daemon *Daemon) ContainerCreate(job *engine.Job) engine.Status {
|
|||
config.MemorySwap = -1
|
||||
}
|
||||
if config.Memory > 0 && config.MemorySwap > 0 && config.MemorySwap < config.Memory {
|
||||
return job.Errorf("Minimum memoryswap limit should larger than memory limit, see usage.\n")
|
||||
return job.Errorf("Minimum memoryswap limit should be larger than memory limit, see usage.\n")
|
||||
}
|
||||
|
||||
var hostConfig *runconfig.HostConfig
|
||||
|
|
Loading…
Add table
Reference in a new issue