From a4d2693effe839524592f4427465ff8d97625302 Mon Sep 17 00:00:00 2001 From: jim Date: Mon, 23 Feb 2015 14:27:19 -0500 Subject: [PATCH] typos --- exercises/assignment3_answers.mdwn | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/assignment3_answers.mdwn b/exercises/assignment3_answers.mdwn index ea0256da..781649ce 100644 --- a/exercises/assignment3_answers.mdwn +++ b/exercises/assignment3_answers.mdwn @@ -312,8 +312,8 @@ Reduce to beta-normal forms:
  1. (\x. x (\y. y x)) (v w) ~~> v w (\y. y (v w))
  2. (\x. x (\x. y x)) (v w) ~~> v w (\x. y x) -
  3. (\x. x (\y. y x)) (v x) ~~> v w (\y. y (v x)) -
  4. (\x. x (\y. y x)) (v y) ~~> v w (\u. u (v y)) +
  5. (\x. x (\y. y x)) (v x) ~~> v x (\y. y (v x)) +
  6. (\x. x (\y. y x)) (v y) ~~> v y (\u. u (v y))
  7. (\x y. x y y) u v ~~> u v v
  8. (\x y. y x) (u v) z w ~~> z (u v) w -- 2.11.0