From 832d90bf93b5d44185b4bf31fb0e8a18353b7606 Mon Sep 17 00:00:00 2001 From: Ryan Culpepper Date: Tue, 30 Oct 2012 12:43:41 -0400 Subject: [PATCH] fix doc typo closes PR 13216 --- collects/scribblings/reference/syntax-util.scrbl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collects/scribblings/reference/syntax-util.scrbl b/collects/scribblings/reference/syntax-util.scrbl index f31f449105..d4125b3507 100644 --- a/collects/scribblings/reference/syntax-util.scrbl +++ b/collects/scribblings/reference/syntax-util.scrbl @@ -79,7 +79,7 @@ creates pattern variable definitions for the pattern variables of (define/with-syntax (px ...) #'(a b c)) (define/with-syntax (tmp ...) (generate-temporaries #'(px ...))) #'([tmp px] ...) -(define-pattern-variable name #'Alice) +(define/with-syntax name #'Alice) #'(hello name) ] }