summaryrefslogtreecommitdiff
path: root/src/ast.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/ast.rs')
-rw-r--r--src/ast.rs2
1 files changed, 1 insertions, 1 deletions
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<Inline> {
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();