diff options
author | Drew DeVault <sir@cmpwn.com> | 2019-03-15 21:56:57 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-03-15 21:56:57 -0400 |
commit | db2146bc91d3a1de13ebf2487cb1e5a9cc52e5e0 (patch) | |
tree | a280cb0abff688cbb7ef81cc617c5089afa595f2 /commands | |
parent | f47a927ab612200f7fa97fc576802fb3f5e65970 (diff) | |
download | aerc-db2146bc91d3a1de13ebf2487cb1e5a9cc52e5e0.tar.gz |
Fix usage message for :next-message
Diffstat (limited to 'commands')
-rw-r--r-- | commands/next-message.go | 2 |
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 { |