aboutsummaryrefslogtreecommitdiff
path: root/commands/next-tab.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/next-tab.go')
-rw-r--r--commands/next-tab.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/commands/next-tab.go b/commands/next-tab.go
index 5af8692..fc668f1 100644
--- a/commands/next-tab.go
+++ b/commands/next-tab.go
@@ -1,7 +1,6 @@
package commands
import (
- "errors"
"fmt"
"strconv"
@@ -47,5 +46,5 @@ func (NextPrevTab) Execute(aerc *widgets.Aerc, args []string) error {
}
func nextPrevTabUsage(cmd string) error {
- return errors.New(fmt.Sprintf("Usage: %s [n]", cmd))
+ return fmt.Errorf("Usage: %s [n]", cmd)
}