(no commit message)
authorchris <chris@web>
Thu, 19 Feb 2015 19:13:01 +0000 (14:13 -0500)
committerLinux User <ikiwiki@localhost.members.linode.com>
Thu, 19 Feb 2015 19:13:01 +0000 (14:13 -0500)
topics/_week4_fixed_point_combinator.mdwn

index 39747b0..fdf19a3 100644 (file)
@@ -368,7 +368,7 @@ Test:
        ~~> (\u. h (u u)) (\u. h (u u))
        ~~> h ((\u. h (u u)) (\u. h (u u)))
 
-But the argument of `h` in the last line is just the same as the second line, which <~~> `Y h`. So the last line <~~> `h (Y h)`. In other words, `Y h` <~~> `h (Y h)`. So by definition, `Y h` is a fixed point for `h`.
+But the argument of `h` in the last line is just the same as the second line, which `<~~> Y h`. So the last line `<~~> h (Y h)`. In other words, `Y h <~~> h (Y h)`. So by definition, `Y h` is a fixed point for `h`.
 
 Works!