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) ] }