From 09b67dc3f735121168ca57a4500b7d7e471fa679 Mon Sep 17 00:00:00 2001 From: greg Date: Mon, 11 Jan 2016 00:49:29 -0800 Subject: [PATCH] Change error message --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index bbce48a..d56679c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -56,7 +56,7 @@ impl ReplState for InterpreterState { fn repl_handler(input: &str, state: &mut InterpreterState) -> String { let tokens = match tokenize(input) { - None => return format!("Failure to tokenize"), + None => return format!("Tokenization error"), Some(t) => t };