From 71e6d5b51638dd1191715d01d15b55d2f0682b79 Mon Sep 17 00:00:00 2001 From: Jay McCarthy Date: Fri, 29 May 2020 16:44:52 -0400 Subject: [PATCH] fix typo --- src/bootstrap.rkt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bootstrap.rkt b/src/bootstrap.rkt index 5d59738..68dc8e4 100644 --- a/src/bootstrap.rkt +++ b/src/bootstrap.rkt @@ -67,9 +67,9 @@ (meta ((name "viewport") (content "width=device-width, initial-scale=1"))) (title ,title) ,@(if (non-empty-string? description) - `(meta ((name "description") - (content ,description))) - '()) + `((meta ((name "description") + (content ,description)))) + '()) (link ((rel "stylesheet") (href ,(static "/bootstrap/css/bootstrap.min.css")) (type "text/css"))) (link ((rel "stylesheet") (href ,(static "/jquery-ui.min.css")) (type "text/css"))) (link ((rel "stylesheet") (href ,(static "/style.css")) (type "text/css")))