From 1e3b2ee9ee28e8b3e1bf4d9e74d4e7c989715582 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Fri, 31 Dec 2010 14:01:03 -0700 Subject: [PATCH] doc typo Closes PR 11582 --- collects/scribblings/guide/pattern-macros.scrbl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collects/scribblings/guide/pattern-macros.scrbl b/collects/scribblings/guide/pattern-macros.scrbl index 32e9247a11..4a967768fc 100644 --- a/collects/scribblings/guide/pattern-macros.scrbl +++ b/collects/scribblings/guide/pattern-macros.scrbl @@ -119,7 +119,7 @@ the expansion is @racketblock[ (let ([set!_1 5] [other 6]) - (let ([tmp_1 tmp]) + (let ([tmp_1 set!_1]) (set! set!_1 other) (set! other tmp_1)) (list set!_1 other))