소스 검색

Merge pull request #410 from kunalkushwaha/network-help-experimental

Reduced the two spaces for network help
Jana Radhakrishnan 10 년 전
부모
커밋
279bc5e134
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      libnetwork/client/network.go

+ 1 - 1
libnetwork/client/network.go

@@ -223,7 +223,7 @@ func networkUsage(chain string) string {
 	help := "Commands:\n"
 
 	for _, cmd := range networkCommands {
-		help += fmt.Sprintf("    %-25.25s%s\n", cmd.name, cmd.description)
+		help += fmt.Sprintf("  %-25.25s%s\n", cmd.name, cmd.description)
 	}
 
 	help += fmt.Sprintf("\nRun '%s network COMMAND --help' for more information on a command.", chain)