aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-03-05 09:46:51 -0800
committerAlex Crichton <alex@alexcrichton.com>2015-03-05 09:46:51 -0800
commite1b2062f95505729e5188d4c857003877e2c09b4 (patch)
tree30b7f7049a813db45722dcdc4ca160f0743680e7
parentbbeb1b87c2b848189c0f71c93cf4b70b32d45a4d (diff)
downloadmal-e1b2062f95505729e5188d4c857003877e2c09b4.tar.gz
mal-e1b2062f95505729e5188d4c857003877e2c09b4.zip
Fix a bad copy/paste apparently
-rw-r--r--rust/src/bin/stepA_mal.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/src/bin/stepA_mal.rs b/rust/src/bin/stepA_mal.rs
index e38b16f..b84a079 100644
--- a/rust/src/bin/stepA_mal.rs
+++ b/rust/src/bin/stepA_mal.rs
@@ -41,7 +41,7 @@ fn quasiquote(ast: MalVal) -> MalVal {
match **a0 {
List(ref a0args,_) | Vector(ref a0args,_) => {
match *a0args[0] {
- Sym(ref s) if *s == "split-unqoute" => {
+ Sym(ref s) if *s == "splice-unquote" => {
return list(vec![symbol("concat"),
a0args[1].clone(),
quasiquote(list(args[1..].to_vec()))])