about summary refs log tree commit diff stats
path: root/commands
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2019-03-15 21:56:57 -0400
committerDrew DeVault <sir@cmpwn.com>2019-03-15 21:56:57 -0400
commitdb2146bc91d3a1de13ebf2487cb1e5a9cc52e5e0 (patch)
treea280cb0abff688cbb7ef81cc617c5089afa595f2 /commands
parentf47a927ab612200f7fa97fc576802fb3f5e65970 (diff)
downloadaerc-db2146bc91d3a1de13ebf2487cb1e5a9cc52e5e0.tar.gz
Fix usage message for :next-message
Diffstat (limited to 'commands')
-rw-r--r--commands/next-message.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/next-message.go b/commands/next-message.go
index 81725c0..8639973 100644
--- a/commands/next-message.go
+++ b/commands/next-message.go
@@ -15,7 +15,7 @@ func init() {
 }
 
 func nextPrevMessageUsage(cmd string) error {
-	return errors.New(fmt.Sprintf("Usage: %s [<n>[%]]", cmd))
+	return errors.New(fmt.Sprintf("Usage: %s [<n>[%%]]", cmd))
 }
 
 func NextPrevMessage(aerc *widgets.Aerc, args []string) error {