From 6dfcf68a12b7c9678f2ac49f2653bbe72aed9736 Mon Sep 17 00:00:00 2001 From: Eli Barzilay Date: Mon, 7 May 2012 20:03:12 -0400 Subject: [PATCH] Fix a typo. Closes PR 12456. --- collects/scribblings/guide/control.scrbl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/collects/scribblings/guide/control.scrbl b/collects/scribblings/guide/control.scrbl index a267e74016..ea515735f0 100644 --- a/collects/scribblings/guide/control.scrbl +++ b/collects/scribblings/guide/control.scrbl @@ -123,7 +123,7 @@ predicate: When an exception is raised, control escapes out of an arbitrary deep evaluation context to the point where the exception is caught---or all -the way out if the expression is never caught: +the way out if the exception is never caught: @interaction[ (+ 1 (+ 1 (+ 1 (+ 1 (+ 1 (+ 1 (/ 1 0))))))) @@ -202,7 +202,7 @@ changing @racket[0] to grab the continuation before returning 0: (define (save-it!) (call-with-composable-continuation (lambda (k) (code:comment @#,t{@racket[k] is the captured continuation}) - (set! saved-k k) + (set! saved-k k) 0))) (+ 1 (+ 1 (+ 1 (save-it!)))) ]