From 61eb31f3b8a8495ffd02ece411ad1699fc3e31ef Mon Sep 17 00:00:00 2001 From: jim Date: Thu, 30 Apr 2015 11:58:40 -0400 Subject: [PATCH] tweak --- topics/week13_native_continuation_operators.mdwn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topics/week13_native_continuation_operators.mdwn b/topics/week13_native_continuation_operators.mdwn index ce68d11a..8d64d2e6 100644 --- a/topics/week13_native_continuation_operators.mdwn +++ b/topics/week13_native_continuation_operators.mdwn @@ -146,7 +146,7 @@ Here are some examples of using these different continuation operators. The cont 3.
let p = let/cc k (1,k) in
     let y = snd p (2, ident) in
     (fst p, y)
- In the first line, we bind the continuation function (the bold code) to `k` and then bind the pair of `1` and that function to the variable `p`. + In the first line, we bind the continuation function (the bold code) to `k` and then bind the variable `p` to the pair of `1` and that function. In the second line, we extract the continuation function from the pair `p` and apply it to the argument `(2, ident)`. That results in the following code being run:
let p = (2, ident) in
     let y = snd p (2, ident) in
-- 
2.11.0