From 57aa7149c1cca691a667175d6b550e506c08219c Mon Sep 17 00:00:00 2001 From: Jay McCarthy Date: Wed, 6 Jul 2011 15:23:40 -0600 Subject: [PATCH] Typo in formlet docs --- collects/web-server/scribblings/formlets.scrbl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collects/web-server/scribblings/formlets.scrbl b/collects/web-server/scribblings/formlets.scrbl index 6b24216daa..e36e23e876 100644 --- a/collects/web-server/scribblings/formlets.scrbl +++ b/collects/web-server/scribblings/formlets.scrbl @@ -120,7 +120,7 @@ Most users will want to use the syntactic shorthand for creating @tech{formlet}s These forms @emph{may not} appear nested inside @racket[unquote] or @racket[unquote-splicing]. For example, this is illegal: @racketblock[ (formlet (div ,@(for/list ([i (in-range 10)]) - `(p ,(text-input . => . name)))) + `(p ,((text-input) . => . name)))) name) ] }