diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2015-03-05 09:46:51 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2015-03-05 09:46:51 -0800 |
| commit | e1b2062f95505729e5188d4c857003877e2c09b4 (patch) | |
| tree | 30b7f7049a813db45722dcdc4ca160f0743680e7 | |
| parent | bbeb1b87c2b848189c0f71c93cf4b70b32d45a4d (diff) | |
| download | mal-e1b2062f95505729e5188d4c857003877e2c09b4.tar.gz mal-e1b2062f95505729e5188d4c857003877e2c09b4.zip | |
Fix a bad copy/paste apparently
| -rw-r--r-- | rust/src/bin/stepA_mal.rs | 2 |
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()))]) |
