From ee5125055f30e3c896e7c31cce93685668f38207 Mon Sep 17 00:00:00 2001 From: pansay Date: Tue, 17 Mar 2015 15:19:47 +0100 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