commands: Removed old TODOs
Matt Bell committed
Jan 20, 2015 at 16:07 UTC
7294f6334ab2f08c506ebc2ecab3d36c39e28988
1 file changed
-6
commands/command.go
-6
@@ -40,12 +40,6 @@ type HelpText struct {
40
Subcommands string // overrides SUBCOMMANDS section
41
}
42
43
-// TODO: check Argument definitions when creating a Command
44
-// (might need to use a Command constructor)
45
-// * make sure any variadic args are at the end
46
-// * make sure there aren't duplicate names
47
-// * make sure optional arguments aren't followed by required arguments
48
-
43
// Command is a runnable command, with input arguments and options (flags).
44
// It can also have Subcommands, to group units of work into sets.
45
type Command struct {