aboutsummaryrefslogtreecommitdiff
path: root/src/commands/follow.rs
diff options
context:
space:
mode:
authoriximeow <me@iximeow.net>2017-11-11 16:51:39 -0800
committeriximeow <me@iximeow.net>2017-11-11 16:51:39 -0800
commit8b5670f420be57576ff44324360e797f46664e8e (patch)
tree43c4943bca0d1d4e3341b1a7bb0f9372832cd253 /src/commands/follow.rs
parenta4f05a40e2f7146f429fef26a96c91a41baba499 (diff)
add a little more help info, describe tweets/compose mode/commands
Diffstat (limited to 'src/commands/follow.rs')
-rw-r--r--src/commands/follow.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/commands/follow.rs b/src/commands/follow.rs
index 3a53821..3a29252 100644
--- a/src/commands/follow.rs
+++ b/src/commands/follow.rs
@@ -10,7 +10,8 @@ pub static UNFOLLOW: Command = Command {
keyword: "unfl",
params: 1,
exec: unfl,
- help_str: "<handle>: Unfollow <handle>. No @ prefix in <handle>!"
+ param_str: " <handle>",
+ help_str: "Unfollow <handle>. No @ prefix in <handle>!"
};
fn unfl(line: String, tweeter: &mut tw::TwitterCache, queryer: &mut Queryer) {
@@ -31,7 +32,8 @@ pub static FOLLOW: Command = Command {
keyword: "fl",
params: 1,
exec: fl,
- help_str: "<handle>: Follow <handle>. No @ prefix in <handle>!"
+ param_str: " <handle>",
+ help_str: "Follow <handle>. No @ prefix in <handle>!"
};
fn fl(line: String, tweeter: &mut tw::TwitterCache, queryer: &mut Queryer) {