From 7294f6334ab2f08c506ebc2ecab3d36c39e28988 Mon Sep 17 00:00:00 2001 From: Matt Bell Date: Tue, 20 Jan 2015 16:07:32 -0800 Subject: [PATCH] commands: Removed old TODOs --- commands/command.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/commands/command.go b/commands/command.go index 332298431..577e2649e 100644 --- a/commands/command.go +++ b/commands/command.go @@ -40,12 +40,6 @@ type HelpText struct { Subcommands string // overrides SUBCOMMANDS section } -// TODO: check Argument definitions when creating a Command -// (might need to use a Command constructor) -// * make sure any variadic args are at the end -// * make sure there aren't duplicate names -// * make sure optional arguments aren't followed by required arguments - // Command is a runnable command, with input arguments and options (flags). // It can also have Subcommands, to group units of work into sets. type Command struct {