update week1 notes
[lambda.git] / week1.mdwn
index 1765c6b..fb6272e 100644 (file)
@@ -561,9 +561,9 @@ It may be helpful to contrast these recursive-style definitons to the way one wo
   `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`  
+                                         `while not (empty? xs) do`  
+                                           `n := n + 1;`  
+                                           `xs := tail xs`  
+                                         `end`  
+                                       `in n`