summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2020-02-17 09:58:28 +0200
committerLars Wirzenius <liw@liw.fi>2020-02-17 09:58:28 +0200
commite840e76c6f9aef19347f7fdfd1ca304108ed6c03 (patch)
tree594f7fd8f6d59815e3a192ddbbcc53de5a984388
parentf997af392d33f557d779af8b71fc782c2f105b23 (diff)
downloadsubplot-e840e76c6f9aef19347f7fdfd1ca304108ed6c03.tar.gz
Fix: typo (findind)
-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();