From 73dc5dda6b8ca8a8bdae0f620442e359871b0152 Mon Sep 17 00:00:00 2001 From: Andy Wortman Date: Sat, 11 Nov 2017 04:35:35 -0800 Subject: start adding help reference --- src/commands/look_up.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/commands/look_up.rs') diff --git a/src/commands/look_up.rs b/src/commands/look_up.rs index dff56aa..fa83d2b 100644 --- a/src/commands/look_up.rs +++ b/src/commands/look_up.rs @@ -8,7 +8,8 @@ use commands::Command; pub static LOOK_UP_USER: Command = Command { keyword: "look_up_user", params: 1, - exec: look_up_user + exec: look_up_user, + help_str: ": Look up the user by the specified twitter user ID, display name/handle." }; fn look_up_user(line: String, tweeter: &mut tw::TwitterCache, mut queryer: &mut Queryer) { @@ -23,7 +24,8 @@ fn look_up_user(line: String, tweeter: &mut tw::TwitterCache, mut queryer: &mut pub static LOOK_UP_TWEET: Command = Command { keyword: "look_up_tweet", params: 1, - exec: look_up_tweet + exec: look_up_tweet, + help_str: ": Look up tweet by the tweet ID. If unknown, try to retrieve it." }; // TODO: make this parse a proper tweet id -- cgit v1.1