transformers tweak
authorJim Pryor <profjim@jimpryor.net>
Mon, 13 Dec 2010 06:43:33 +0000 (01:43 -0500)
committerJim Pryor <profjim@jimpryor.net>
Mon, 13 Dec 2010 06:43:33 +0000 (01:43 -0500)
Signed-off-by: Jim Pryor <profjim@jimpryor.net>
monad_transformers.mdwn

index f6de530..26fb13f 100644 (file)
@@ -467,7 +467,7 @@ The meaning of `shift` will be explained in [[CPS and Continuation Operators]].
 
        TreeCont.monadize (fun a -> fun k -> k (a*a)) t1 (fun t -> t);;
 
-But because of the way our monad library hides the underlying machinery, you can't just say `fun k -> k (a*a)`, you have to say `shift (fun k -> k (a*a))`.
+But because of the way our monad library hides the underlying machinery, here you can no longer just say `fun k -> k (a*a)`; you have to say `shift (fun k -> k (a*a))`.
 
 Moving on, we can count the leaves:
 <!--