Go is a tool for managing Go source code.
Usage:
go command [arguments]
It starting with
go <command> [arguments]
might improve clarity.
After writing this I was pleasantly surprised to find 'svn' and 'git' follow this pattern and may be where I get this from as they are among the --help I utilize the most.
I suspect this was done on purpose and so I hesitate to report an issue. Your thoughts?
Thanks,
Lloyd
Hi nuts,I was noticing the pattern ofUse "PROGRAM help [command]" for more information about a command.for some go programs, and so I traced it back to Go's own help.The more common (pedantic) pattern would seem to use angle brackets, as although command is an optional parameter of help the sentence seems to require a command in this context:Use "PROGRAM help <command>" for more information about a command.There is also a weird asymmetry in this short 'go help' as it starts:Go is a tool for managing Go source code.
Usage:
go command [arguments]
It starting with
go <command> [arguments]
might improve clarity.After writing this I was pleasantly surprised to find 'svn' and 'git' follow this pattern and may be where I get this from as they are among the --help I utilize the most.
I suspect this was done on purpose and so I hesitate to report an issue. Your thoughts?