From 7f23a85e1598190bea7276623a48af058e3f897e Mon Sep 17 00:00:00 2001 From: Jay McCarthy Date: Fri, 26 Oct 2012 14:46:32 -0600 Subject: [PATCH] fixing PR13210 --- .../web-server/scribblings/tutorial/continue.scrbl | 10 +++++----- .../scribblings/tutorial/examples/test-static.rkt | 8 ++++---- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/collects/web-server/scribblings/tutorial/continue.scrbl b/collects/web-server/scribblings/tutorial/continue.scrbl index b248fb4a63..fe4c957dcc 100644 --- a/collects/web-server/scribblings/tutorial/continue.scrbl +++ b/collects/web-server/scribblings/tutorial/continue.scrbl @@ -661,10 +661,10 @@ following content: web-server/insta (define (start request) (response/xexpr - '(html (head (title "Testing")) - (link ((rel "stylesheet") - (href "/test-static.css") - (type "text/css"))) + '(html (head (title "Testing") + (link ((rel "stylesheet") + (href "/test-static.css") + (type "text/css")))) (body (h1 "Testing") (h2 "This is a header") (p "This is " (span ((class "hot")) "hot") "."))))) @@ -1255,7 +1255,7 @@ For example, @racket[input-string] is itself a library @racket[title] to that string. @racket[input-string] is rendered as @racketresult[`(input ([type "text"] [name -,_fresh_name]))], so @racket[(formlet-dispay +,_fresh_name]))], so @racket[(formlet-display new-post-formlet)] is rendered as: @racketresultblock[ (list '(input ([type "text"] [name "input_0"])) diff --git a/collects/web-server/scribblings/tutorial/examples/test-static.rkt b/collects/web-server/scribblings/tutorial/examples/test-static.rkt index e97db77a8c..d43ef02c3f 100644 --- a/collects/web-server/scribblings/tutorial/examples/test-static.rkt +++ b/collects/web-server/scribblings/tutorial/examples/test-static.rkt @@ -1,10 +1,10 @@ #lang web-server/insta (define (start request) (response/xexpr - '(html (head (title "Testing")) - (link ((rel "stylesheet") - (href "/test-static.css") - (type "text/css"))) + '(html (head (title "Testing") + (link ((rel "stylesheet") + (href "/test-static.css") + (type "text/css")))) (body (h1 "This is a header") (p "This is " (span ((class "hot")) "hot") "."))))) (static-files-path "htdocs")