From 037df4227183797071d12295358a66f94070ae9f Mon Sep 17 00:00:00 2001 From: Martin HART Date: Thu, 29 Oct 2020 14:44:16 +0100 Subject: [PATCH] correct typo --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index bc5afc2..a29b6e1 100644 --- a/src/main.rs +++ b/src/main.rs @@ -84,7 +84,7 @@ fn parse_config(conf: String, pool: &mut Vec) -> Result raw, }; if a.is_empty() { - return Err("Thi line should not be empty !"); + return Err("This line should not be empty !"); } let b = match lines.next() { None => return Err("This line should be the instruction !"),