about summary refs log tree commit diff stats
path: root/callcc.mu
diff options
context:
space:
mode:
Diffstat (limited to 'callcc.mu')
-rw-r--r--callcc.mu6
1 files changed, 3 insertions, 3 deletions
diff --git a/callcc.mu b/callcc.mu
index 5e8661bb..1bf32973 100644
--- a/callcc.mu
+++ b/callcc.mu
@@ -2,16 +2,16 @@
 
 recipe main [
   c:continuation <- f
-  continue-from c:continuation            # <-- ..when you hit this
+  continue-from c                         # <-- ..when you hit this
 ]
 
 recipe f [
   c:continuation <- g
-  reply c:continuation
+  reply c
 ]
 
 recipe g [
   c:continuation <- current-continuation  # <-- loop back to here
   $print 1
-  reply c:continuation  # threaded through unmodified after first iteration
+  reply c  # threaded through unmodified after first iteration
 ]