From 753fd77858425f7a8b001ee6dd7a54a9c6e666d8 Mon Sep 17 00:00:00 2001 From: Eli Barzilay Date: Wed, 28 Dec 2011 21:09:45 -0500 Subject: [PATCH] Minor typo. Closes PR12463 --- collects/scribblings/guide/proc-macros.scrbl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collects/scribblings/guide/proc-macros.scrbl b/collects/scribblings/guide/proc-macros.scrbl index fe251289f3..bf7abaa638 100644 --- a/collects/scribblings/guide/proc-macros.scrbl +++ b/collects/scribblings/guide/proc-macros.scrbl @@ -266,7 +266,7 @@ Now we need an expression in place of @racket[....] that generates as many identifiers as there are @racket[id] matches in the original pattern. Since this is a common task, Racket provides a helper function, @racket[generate-temporaries], that -takes a sequece of identifiers and returns a sequence of +takes a sequence of identifiers and returns a sequence of generated identifiers: @racketblock[