From 9dd81411b0de422eb061cc4d393e4e165deabea3 Mon Sep 17 00:00:00 2001 From: Danny Yoo Date: Sat, 23 Feb 2013 13:34:00 -0700 Subject: [PATCH] Use @racket[] on the unquote-splicing identifier so that we get good hyperlinking. Closes PR 13548. --- collects/web-server/scribblings/tutorial/continue.scrbl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collects/web-server/scribblings/tutorial/continue.scrbl b/collects/web-server/scribblings/tutorial/continue.scrbl index ccfa8f2bf2..d327364d40 100644 --- a/collects/web-server/scribblings/tutorial/continue.scrbl +++ b/collects/web-server/scribblings/tutorial/continue.scrbl @@ -227,7 +227,7 @@ the entire list, yielding the malformed expression "Moe")))]. Instead, we must splice the list in, like so: @racket[`(ul ,@((li "Larry") (li "Curly") (li -"Moe")))]. The unquote-splicing form, @racket[,@expression], +"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|