From 6838c23478944a9b45df1fa9a0f432ec77423987 Mon Sep 17 00:00:00 2001 From: Wagner Riffel Date: Tue, 3 Sep 2019 16:34:03 -0300 Subject: all: purge redundant underscores Signed-off-by: Wagner Riffel --- commands/account/next-result.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'commands/account/next-result.go') diff --git a/commands/account/next-result.go b/commands/account/next-result.go index 24d53be..ab050af 100644 --- a/commands/account/next-result.go +++ b/commands/account/next-result.go @@ -13,15 +13,15 @@ func init() { register(NextPrevResult{}) } -func (_ NextPrevResult) Aliases() []string { +func (NextPrevResult) Aliases() []string { return []string{"next-result", "prev-result"} } -func (_ NextPrevResult) Complete(aerc *widgets.Aerc, args []string) []string { +func (NextPrevResult) Complete(aerc *widgets.Aerc, args []string) []string { return nil } -func (_ NextPrevResult) Execute(aerc *widgets.Aerc, args []string) error { +func (NextPrevResult) Execute(aerc *widgets.Aerc, args []string) error { if len(args) > 1 { return nextPrevResultUsage(args[0]) } -- cgit v1.2.3