From dfc16089528c1aa240b949f5611bdb6e37e0565f Mon Sep 17 00:00:00 2001 From: jim Date: Sat, 14 Feb 2015 09:55:26 -0500 Subject: [PATCH] tweak --- exercises/assignment3_hint2.mdwn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/assignment3_hint2.mdwn b/exercises/assignment3_hint2.mdwn index ca0bc51a..e0f3936f 100644 --- a/exercises/assignment3_hint2.mdwn +++ b/exercises/assignment3_hint2.mdwn @@ -19,7 +19,7 @@ That's what `m a` should be, so `m` should be `\a. \n b. n a`. And if we check: `(\n b. n a) (\a. \n b. n a) b ~~>` `(\b. (\a. \n b. n a) a) b ~~>` `(\b. (\n b. n a)) b ~~>` -`(\n b. n a)` ≡ +`(\n b. n a)` <~~> `m a` Looks good. So `f` needs to be a function that accepts an argument `w` (after the first stage, this will be `m a`), and an argument `b`, and applies `w` to `m` and to `b`. In other words, `f` should be: -- 2.11.0