From d1a33a3a167d47541561ca9597d2d5f28431605f Mon Sep 17 00:00:00 2001 From: Andy Wortman Date: Sat, 11 Nov 2017 16:51:39 -0800 Subject: add a little more help info, describe tweets/compose mode/commands --- src/commands/fav.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/commands/fav.rs') diff --git a/src/commands/fav.rs b/src/commands/fav.rs index 6f769d3..7a4852e 100644 --- a/src/commands/fav.rs +++ b/src/commands/fav.rs @@ -12,7 +12,8 @@ pub static UNFAV: Command = Command { keyword: "unfav", params: 1, exec: unfav, - help_str: ": Unfavorite a tweet." + param_str: " ", + help_str: "Unfavorite a tweet." }; fn unfav(line: String, tweeter: &mut tw::TwitterCache, queryer: &mut Queryer) { @@ -42,7 +43,8 @@ pub static FAV: Command = Command { keyword: "fav", params: 1, exec: fav, - help_str: ": Favorite a tweet." + param_str: "", + help_str: "Favorite a tweet." }; fn fav(line: String, tweeter: &mut tw::TwitterCache, queryer: &mut Queryer) { -- cgit v1.1