Fix usage message for :next-message

This commit is contained in:
Drew DeVault 2019-03-15 21:56:57 -04:00
parent f47a927ab6
commit db2146bc91
1 changed files with 1 additions and 1 deletions

View File

@ -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 {