aboutsummaryrefslogtreecommitdiff
path: root/rust/src/bin
diff options
context:
space:
mode:
Diffstat (limited to 'rust/src/bin')
-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()))])