From 557fa14ec361c3841a54781453898aa55225d473 Mon Sep 17 00:00:00 2001 From: osmarks Date: Sun, 11 Nov 2018 16:07:17 +0000 Subject: [PATCH] Correct exec help text. --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index f699333..f44f603 100644 --- a/src/main.rs +++ b/src/main.rs @@ -36,7 +36,7 @@ pub fn main() { .command("ping", |c| c.cmd(ping).desc("Says Pong.").known_as("test")) .command("search", |c| c.cmd(search).desc("Executes a search using DuckDuckGo.").known_as("ddg")) .command("eval", |c| c.cmd(eval).desc("Evaluates an arithmetic expression.").known_as("calc")) - .command("exec", |c| c.cmd(exec).desc("Executes code passed in codeblock with language set via Coliru. Supported languages: python, shell.")) + .command("exec", |c| c.cmd(exec).desc("Executes code passed in codeblock with language set via Coliru. Supported languages: `python`, `shell`, `haskell`, `lua`.")) .command("eval-polish", |c| c.cmd(eval_polish).desc("Evaluates a Polish-notation arithmetic expression."))); if let Err(why) = client.start() {