From e840e76c6f9aef19347f7fdfd1ca304108ed6c03 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Mon, 17 Feb 2020 09:58:28 +0200 Subject: Fix: typo (findind) --- src/ast.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ast.rs b/src/ast.rs index 9ae92c6..f7578e7 100644 --- a/src/ast.rs +++ b/src/ast.rs @@ -543,7 +543,7 @@ fn step(bindings: &Bindings, text: &str) -> Vec { let m = bindings.find(&step); if m.is_none() { - eprintln!("Could not findind binding for: {}", text); + eprintln!("Could not finding binding for: {}", text); return error_msg(&format!("Could not find binding for: {}", text)); } let m = m.unwrap(); -- cgit v1.2.1