1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #22962 from normalfaults/b

fixed spelling error in windows.go
This commit is contained in:
Vincent Demeester 2016-05-25 12:21:08 +02:00
commit 2a4b4a8133
2 changed files with 2 additions and 2 deletions

View file

@ -614,7 +614,7 @@ func writeLayerFromTar(r archive.Reader, w hcsshim.LayerWriter) (int64, error) {
}
buf.Reset(w)
// Add the Hyper-V Virutal Machine group ACE to the security descriptor
// Add the Hyper-V Virtual Machine group ACE to the security descriptor
// for TP5 so that Xenons can access all files. This is not necessary
// for post-TP5 builds.
if isTP5OrOlder() {

View file

@ -4342,7 +4342,7 @@ func (s *DockerSuite) TestRunTooLongHostname(c *check.C) {
c.Assert(err, checker.NotNil, check.Commentf("Expected docker run to fail!"))
c.Assert(out, checker.Contains, "invalid hostname format:", check.Commentf("Expected to have 'invalid hostname format:' in the output, get: %s!", out))
// Addtional test cases
// Additional test cases
validHostnames := map[string]string{
"hostname": "hostname",
"host-name": "host-name",