From 6df35ce1323b5cdff96796081cf89e21121d9ec1 Mon Sep 17 00:00:00 2001 From: Sam Tobin-Hochstadt Date: Thu, 1 Dec 2011 09:45:45 -0500 Subject: [PATCH] Fix doc typo. Closes PR 12395. --- 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 9488b07040..67761735df 100644 --- a/collects/scribblings/guide/pattern-macros.scrbl +++ b/collects/scribblings/guide/pattern-macros.scrbl @@ -140,7 +140,7 @@ and function calls. The @racket[define-syntax-rule] form binds a macro that matches a single pattern, but Racket's macro system supports transformers that match multiple patterns starting with the same identifier. To write -such macros, the programmer much use the more general +such macros, the programmer must use the more general @racket[define-syntax] form along with the @racket[syntax-rules] transformer form: