transformers tweak
[lambda.git] / 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:
 <!--