소스 검색

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])
 	}