update week1 notes
[lambda.git] / week1.mdwn
index 45fb42f..6b9dd41 100644 (file)
@@ -560,10 +560,10 @@ It may be helpful to contrast these recursive-style definitons to the way one wo
   `empty? match` λ `xs.` *this definition left as an exercise*;  
   `tail match` λ `xs.` *this definition left as an exercise*;  
   `length match` λ `xs. let`  
-                                   `n := 0;`  
-              `while not (empty? xs) do`  
-                `n := n + 1;`  
-                `xs := tail xs`  
-              `end`  
-            `in n`  
+                                         `n := 0;`  
+                                         `while not (empty? xs) do`  
+                                           `n := n + 1;`  
+                                           `xs := tail xs`  
+                                         `end`  
+                                      `in n`