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/msg/read.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'commands/msg/read.go') diff --git a/commands/msg/read.go b/commands/msg/read.go index 3497ef1..0da664b 100644 --- a/commands/msg/read.go +++ b/commands/msg/read.go @@ -19,15 +19,15 @@ func init() { register(Read{}) } -func (_ Read) Aliases() []string { +func (Read) Aliases() []string { return []string{"read", "unread"} } -func (_ Read) Complete(aerc *widgets.Aerc, args []string) []string { +func (Read) Complete(aerc *widgets.Aerc, args []string) []string { return nil } -func (_ Read) Execute(aerc *widgets.Aerc, args []string) error { +func (Read) Execute(aerc *widgets.Aerc, args []string) error { opts, optind, err := getopt.Getopts(args, "t") if err != nil { return err -- cgit v1.2.3