aboutsummaryrefslogtreecommitdiff
path: root/src/commands/fav.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/fav.rs')
-rw-r--r--src/commands/fav.rs6
1 files changed, 4 insertions, 2 deletions
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: "<tweet_id>: Unfavorite a tweet."
+ param_str: " <tweet_id>",
+ 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: "<tweet_id>: Favorite a tweet."
+ param_str: "<tweet_id>",
+ help_str: "Favorite a tweet."
};
fn fav(line: String, tweeter: &mut tw::TwitterCache, queryer: &mut Queryer) {