From 87d426dc684d50135b8eb59fd337a0e12f6eec6e Mon Sep 17 00:00:00 2001 From: pansay Date: Sat, 2 Apr 2016 05:32:56 +0200 Subject: [PATCH] Update recursion.md --- manuscript/markdown/References and Rebinding/recursion.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manuscript/markdown/References and Rebinding/recursion.md b/manuscript/markdown/References and Rebinding/recursion.md index b4bd5e4..e586c38 100644 --- a/manuscript/markdown/References and Rebinding/recursion.md +++ b/manuscript/markdown/References and Rebinding/recursion.md @@ -133,7 +133,7 @@ Using named function expressions doesn't help us, because `even` and `odd` need Now you can rebind one without breaking the other, because the names outside of the closure have no effect on the bindings inside the closure: - odd = 'unusual; + odd = 'unusual'; even(0) //=> true