aboutsummaryrefslogtreecommitdiffhomepage
path: root/command/node.go
diff options
context:
space:
mode:
Diffstat (limited to 'command/node.go')
-rw-r--r--command/node.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/command/node.go b/command/node.go
index b6f84bf8..0dcdf162 100644
--- a/command/node.go
+++ b/command/node.go
@@ -3,7 +3,6 @@ package command
import (
"flag"
"io"
- "strings"
)
// A node represents a command.
@@ -17,7 +16,7 @@ type node struct {
// Names of commands preceding node.
prefix []string
// Short user-facing representations of flags received by node.
- suffix strings.Builder
+ suffix []string
f HandlerFunc
set *flag.FlagSet