From: jim Date: Sat, 7 Feb 2015 18:24:58 +0000 (-0500) Subject: add comment X-Git-Url: http://lambda.jimpryor.net/git/gitweb.cgi?p=lambda.git;a=commitdiff_plain;h=b6e2ba40d18b2c1efb84e764d0e07d7f97d57319 add comment --- diff --git a/topics/week2_lambda_intro.mdwn b/topics/week2_lambda_intro.mdwn index 3718d317..091e1234 100644 --- a/topics/week2_lambda_intro.mdwn +++ b/topics/week2_lambda_intro.mdwn @@ -270,7 +270,7 @@ For some lambda terms, it is easy to see what function they represent: simply returns `M`: `((\x x) M) ~~> M`. > `(\x (x x))` duplicates its argument (applies it to itself): -`((\x (x x)) M) ~~> (M M)` +`((\x (x x)) M) ~~> (M M)` > `(\x (\y (y x)))` reorders its two arguments: `(((\x (\y (y x))) M) N) ~~> (N M)`