summaryrefslogtreecommitdiff
path: root/command.go
diff options
context:
space:
mode:
Diffstat (limited to 'command.go')
-rw-r--r--command.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/command.go b/command.go
index fc0e28b..eac9dde 100644
--- a/command.go
+++ b/command.go
@@ -2,13 +2,13 @@ package complete
type Commands map[string]Command
-type Flags map[string]*Predicate
+type Flags map[string]Predicate
type Command struct {
Name string
Sub Commands
Flags Flags
- Args *Predicate
+ Args Predicate
}
// options returns all available complete options for the given command