about summary refs log tree commit diff stats
path: root/commands/help.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/help.go')
-rw-r--r--commands/help.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/commands/help.go b/commands/help.go
index c4ed4ff..b27c2f0 100644
--- a/commands/help.go
+++ b/commands/help.go
@@ -12,15 +12,15 @@ func init() {
 	register(Help{})
 }
 
-func (_ Help) Aliases() []string {
+func (Help) Aliases() []string {
 	return []string{"help"}
 }
 
-func (_ Help) Complete(aerc *widgets.Aerc, args []string) []string {
+func (Help) Complete(aerc *widgets.Aerc, args []string) []string {
 	return nil
 }
 
-func (_ Help) Execute(aerc *widgets.Aerc, args []string) error {
+func (Help) Execute(aerc *widgets.Aerc, args []string) error {
 	page := "aerc"
 	if len(args) == 2 {
 		page = "aerc-" + args[1]