Commit b1679e4d authored by Nate Wilkinson's avatar Nate Wilkinson Committed by Brad Fitzpatrick

cmd/go: put "go help" list in alphabetical order

Fixes #23791

Change-Id: I3ded0cd6e9fea14f477f90cf4ad1fb9ff95257f4
Reviewed-on: https://go-review.googlesource.com/93416Reviewed-by: default avatarBrad Fitzpatrick <bradfitz@golang.org>
parent 1006f703
This diff is collapsed.
...@@ -38,10 +38,10 @@ import ( ...@@ -38,10 +38,10 @@ import (
func init() { func init() {
base.Commands = []*base.Command{ base.Commands = []*base.Command{
work.CmdBuild, work.CmdBuild,
bug.CmdBug,
clean.CmdClean, clean.CmdClean,
doc.CmdDoc, doc.CmdDoc,
envcmd.CmdEnv, envcmd.CmdEnv,
bug.CmdBug,
fix.CmdFix, fix.CmdFix,
fmtcmd.CmdFmt, fmtcmd.CmdFmt,
generate.CmdGenerate, generate.CmdGenerate,
...@@ -54,12 +54,12 @@ func init() { ...@@ -54,12 +54,12 @@ func init() {
version.CmdVersion, version.CmdVersion,
vet.CmdVet, vet.CmdVet,
help.HelpC,
help.HelpBuildmode, help.HelpBuildmode,
help.HelpC,
help.HelpCache, help.HelpCache,
help.HelpEnvironment,
help.HelpFileType, help.HelpFileType,
help.HelpGopath, help.HelpGopath,
help.HelpEnvironment,
help.HelpImportPath, help.HelpImportPath,
help.HelpPackages, help.HelpPackages,
test.HelpTestflag, test.HelpTestflag,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment