浏览代码

Merge pull request #21719 from senk/21710-fix-client-help-text

Fixing help text of "docker network --help" to be consistent
Vincent Demeester 9 年之前
父节点
当前提交
8d31b0f051
共有 1 个文件被更改,包括 9 次插入9 次删除
  1. 9 9
      api/client/network.go

+ 9 - 9
api/client/network.go

@@ -372,19 +372,19 @@ func subnetMatches(subnet, data string) (bool, error) {
 }
 
 func networkUsage() string {
-	networkCommands := map[string]string{
-		"create":     "Create a network",
-		"connect":    "Connect container to a network",
-		"disconnect": "Disconnect container from a network",
-		"inspect":    "Display detailed network information",
-		"ls":         "List all networks",
-		"rm":         "Remove a network",
+	networkCommands := [][]string{
+		{"create", "Create a network"},
+		{"connect", "Connect container to a network"},
+		{"disconnect", "Disconnect container from a network"},
+		{"inspect", "Display detailed network information"},
+		{"ls", "List all networks"},
+		{"rm", "Remove a network"},
 	}
 
 	help := "Commands:\n"
 
-	for cmd, description := range networkCommands {
-		help += fmt.Sprintf("  %-25.25s%s\n", cmd, description)
+	for _, cmd := range networkCommands {
+		help += fmt.Sprintf("  %-25.25s%s\n", cmd[0], cmd[1])
 	}
 
 	help += fmt.Sprintf("\nRun 'docker network COMMAND --help' for more information on a command.")