aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShawn Smith <shawnpsmith@gmail.com>2019-09-05 01:18:56 +0900
committerAndrew Jackura <ajackura@google.com>2019-09-04 09:18:56 -0700
commit24aea2b9b9c12400919203843c92ef808c7ad560 (patch)
treee84349031318953ea48279a5ee0c9a359295b8fd
parentdd7622c7b1e7543f248e76a408f75d346252edaa (diff)
downloadgo-subcommands-24aea2b9b9c12400919203843c92ef808c7ad560.tar.gz
Fix struct comment typo (#28)
-rw-r--r--subcommands.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/subcommands.go b/subcommands.go
index af8463a..39268f7 100644
--- a/subcommands.go
+++ b/subcommands.go
@@ -63,7 +63,7 @@ type Commander struct {
Error io.Writer // Error specifies where the commander should write its error (default: os.Stderr).
}
-// A commandGroup represents a set of commands about a common topic.
+// A CommandGroup represents a set of commands about a common topic.
type CommandGroup struct {
name string
commands []Command