cps tweak
authorJim Pryor <profjim@jimpryor.net>
Tue, 21 Dec 2010 03:29:04 +0000 (22:29 -0500)
committerJim Pryor <profjim@jimpryor.net>
Tue, 21 Dec 2010 03:29:04 +0000 (22:29 -0500)
Signed-off-by: Jim Pryor <profjim@jimpryor.net>
hints/cps_hint_4.mdwn

index 7229670..9804ed6 100644 (file)
@@ -15,7 +15,7 @@ This function is developed in *The Seasoned Schemer* pp. 165-177. It accepts a l
                             [(atom? (car l)) (begin
                                                (let/cc k2
                                                  (set! resume k2) ; now calling resume with val will ignore val
                             [(atom? (car l)) (begin
                                                (let/cc k2
                                                  (set! resume k2) ; now calling resume with val will ignore val
-                                                                  ; and continue with the second line of (begin ... (walk (cdr l)))
+                                                                  ; and continue with the final line of (begin ... (walk (cdr l)))
                                                  ; when the next line is executed, yield will be bound to k1 or k3
                                                  (yield (car l)))
                                                ; the previous yield line will never return, but the following line will be executed when resume is called
                                                  ; when the next line is executed, yield will be bound to k1 or k3
                                                  (yield (car l)))
                                                ; the previous yield line will never return, but the following line will be executed when resume is called