week1: rosetta tweaks
[lambda.git] / week1.mdwn
index bfcf91d..3669c33 100644 (file)
@@ -351,6 +351,7 @@ The following site may be useful; it lets you run a Scheme interpreter inside yo
 
 *      [Try Scheme in your web browser](http://tryscheme.sourceforge.net/)
 
 
 *      [Try Scheme in your web browser](http://tryscheme.sourceforge.net/)
 
+ 
 
 1.     Function application and parentheses
 
 
 1.     Function application and parentheses
 
@@ -396,7 +397,7 @@ The following site may be useful; it lets you run a Scheme interpreter inside yo
                          (let ((two 2))
                                   (+ three two)))
 
                          (let ((two 2))
                                   (+ three two)))
 
-Most of the parentheses in this construction *aren't* playing the role of applying a function to some arguments---only the ones in `(+ three two)` are doing that.
+       Most of the parentheses in this construction *aren't* playing the role of applying a function to some arguments---only the ones in `(+ three two)` are doing that.
 
 
        In OCaml:
 
 
        In OCaml: