List all valid actions in config error message (#848)

This commit is contained in:
Robert Bittle 2017-10-21 18:26:14 -04:00 committed by Joe Wilm
parent 2ea6ec5c8f
commit 7a5eebd094
1 changed files with 1 additions and 1 deletions

View File

@ -399,7 +399,7 @@ impl<'a> de::Deserialize<'a> for ActionWrapper {
type Value = ActionWrapper;
fn expecting(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.write_str("Paste, Copy, PasteSelection, or Quit")
f.write_str("Paste, Copy, PasteSelection, IncreaseFontSize, DecreaseFontSize, ResetFontSize, or Quit")
}
fn visit_str<E>(self, value: &str) -> ::std::result::Result<ActionWrapper, E>