summary refs log tree commit diff stats
path: root/commands/next-folder.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/next-folder.go')
-rw-r--r--commands/next-folder.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/commands/next-folder.go b/commands/next-folder.go
index ed11615..dce8907 100644
--- a/commands/next-folder.go
+++ b/commands/next-folder.go
@@ -13,13 +13,13 @@ func init() {
 	Register("prev-folder", NextPrevFolder)
 }
 
-func usage(cmd string) error {
+func nextPrevFolderUsage(cmd string) error {
 	return errors.New(fmt.Sprintf("Usage: %s [n]", cmd))
 }
 
 func NextPrevFolder(aerc *widgets.Aerc, args []string) error {
 	if len(args) > 2 {
-		return usage(args[0])
+		return nextPrevFolderUsage(args[0])
 	}
 	var (
 		n   int = 1
@@ -28,7 +28,7 @@ func NextPrevFolder(aerc *widgets.Aerc, args []string) error {
 	if len(args) > 1 {
 		n, err = strconv.Atoi(args[1])
 		if err != nil {
-			return usage(args[0])
+			return nextPrevFolderUsage(args[0])
 		}
 	}
 	acct := aerc.SelectedAccount()