Skip to content

Commit

Permalink
Merge pull request moby#10051 from thaJeztah/fix-error-message
Browse files Browse the repository at this point in the history
Fix typo in error-message.
  • Loading branch information
crosbymichael committed Jan 12, 2015
2 parents 9215c39 + 5f699a4 commit 4e0f656
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion daemon/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4e0f656

Please sign in to comment.