From: Jim Pryor Date: Wed, 1 Dec 2010 09:27:07 +0000 (-0500) Subject: week11 tweaks X-Git-Url: http://lambda.jimpryor.net/git/gitweb.cgi?p=lambda.git;a=commitdiff_plain;h=cb5b411be5b115f81dfdc99f507035f7e0226ff5 week11 tweaks Signed-off-by: Jim Pryor --- diff --git a/from_list_zippers_to_continuations.mdwn b/from_list_zippers_to_continuations.mdwn index da184c51..b4dd946e 100644 --- a/from_list_zippers_to_continuations.mdwn +++ b/from_list_zippers_to_continuations.mdwn @@ -134,7 +134,7 @@ recipe for constructing the list goes like this: What is the type of each of these steps? Well, it will be a function from the result of the previous step (a list) to a new list: it will be a function of type `char list -> char list`. We'll call each step -(or group of steps) a **continuation** of the recipe. So in this +(or group of steps) a **continuation** of the previous steps. So in this context, a continuation is a function of type `char list -> char list`. For instance, the continuation corresponding to the portion of the recipe below the horizontal line is the function `fun (tail : char