From f7cc4093516e5d3d316c9806254d4cbaec1f918c Mon Sep 17 00:00:00 2001 From: Jay McCarthy Date: Fri, 23 Aug 2013 13:07:14 -0600 Subject: [PATCH] Fix typo --- .../web-server/scribblings/tutorial/continue.scrbl | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/web-server-pkgs/web-server-doc/web-server/scribblings/tutorial/continue.scrbl b/pkgs/web-server-pkgs/web-server-doc/web-server/scribblings/tutorial/continue.scrbl index b596faa64f..2c3f757b7e 100644 --- a/pkgs/web-server-pkgs/web-server-doc/web-server/scribblings/tutorial/continue.scrbl +++ b/pkgs/web-server-pkgs/web-server-doc/web-server/scribblings/tutorial/continue.scrbl @@ -226,10 +226,11 @@ the entire list, yielding the malformed expression @racket['(ul ((li "Larry") (li "Curly") (li "Moe")))]. -Instead, we must splice the list in, like so: @racket[`(ul ,@((li "Larry") (li "Curly") (li -"Moe")))]. The @racket[unquote-splicing] form, @racket[,@expression], -allows us conveniently to splice a list of @|xexpr| fragments into a -larger template list. To generalize the example, here are two helper +Instead, we must splice the list in, like so: @racket[`(ul +,@'((li "Larry") (li "Curly") (li "Moe")))]. The +@racket[unquote-splicing] form, @racket[,@expression], allows us +conveniently to splice a list of @|xexpr| fragments into a larger +template list. To generalize the example, here are two helper functions that convert any list of @|xexpr|s into one @|xexpr| representing an unordered, itemized HTML list: