fixed broken markdown?
[lambda.git] / week3.mdwn
index b29d095..f83d377 100644 (file)
@@ -214,7 +214,6 @@ and the initial `(\x. x x)` is just what we earlier called the <code>&omega;</co
 <pre><code>&omega; (\h \lst. (isempty lst) zero (add one ((h h) (extract-tail lst))))
 </code></pre>
 
-
 and this will indeed implement the recursive function we couldn't earlier figure out how to define.
 
 In broad brush-strokes, `H` is half of the `get_length` function we're seeking, and `H` has the form:
@@ -546,18 +545,17 @@ sentence in which it occurs, the sentence denotes a fixed point for
 the identity function.  Here's a fixed point for the identity
 function:
 
-<pre>
-    Y I
-    (\f. (\h. f (h h)) (\h. f (h h))) I
-    (\h. I (h h)) (\h. I (h h)))
-    (\h. (h h)) (\h. (h h)))
-    &omega; &omega;
-    &Omega
-</pre>
+<pre><code>Y I
+(\f. (\h. f (h h)) (\h. f (h h))) I
+(\h. I (h h)) (\h. I (h h)))
+(\h. (h h)) (\h. (h h)))
+&omega; &omega;
+&Omega
+</code></pre>
 
 Oh.  Well!  That feels right.  The meaning of *This sentence is true*
 in a context in which *this sentence* refers to the sentence in which
-it occurs is &Omega;, our prototypical infinite loop...
+it occurs is <code>&Omega;</code>, our prototypical infinite loop...
 
 What about the liar paradox?