Forgot to change name here

This commit is contained in:
greg 2017-12-29 04:52:47 -08:00
parent 5d9fa6679b
commit 0c64b14be0
1 changed files with 1 additions and 1 deletions

View File

@ -334,7 +334,7 @@ impl Sexp {
&Cons(ref car, ref cdr) => format!("({} . {})", car.print(), cdr.print()),
&Nil => format!("()"),
&FnLiteral { ref formal_params, .. } => format!("<lambda {:?}>", formal_params),
&Primitive(ref sym) => format!("<builtin \"{:?}\">", sym),
&Primitive(ref sym) => format!("<primitive \"{:?}\">", sym),
}
}