Преглед изворни кода

Merge pull request #789 from samjsharpe/fix-extra-brace

Removes a brace in the description of the wait command
Guillaume J. Charmes пре 12 година
родитељ
комит
2d52d4d614
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      commands.go

+ 1 - 1
commands.go

@@ -102,7 +102,7 @@ func (cli *DockerCli) CmdHelp(args ...string) error {
 		{"stop", "Stop a running container"},
 		{"tag", "Tag an image into a repository"},
 		{"version", "Show the docker version information"},
-		{"wait", "Block until a container stops}, then print its exit code"},
+		{"wait", "Block until a container stops, then print its exit code"},
 	} {
 		help += fmt.Sprintf("    %-10.10s%s\n", command[0], command[1])
 	}