Fix the obligatory Stupid Mistake.

original commit: 1ccdc3a60de161cd38e7481c88aa3d8d06ec20ef
This commit is contained in:
Eli Barzilay 2013-09-28 15:28:00 -04:00
parent 2ed47f1bbd
commit 24492f3f9b

View File

@ -10,7 +10,7 @@
(provide doctype)
(define (doctype type)
(cond [(string? type) (literal "<!DOCTYPE " type ">\n")]
[(eq? 'html type) (doctype type)]
[(eq? 'html type) (doctype "html")]
[(eq? 'xhtml type)
(list (literal "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n")
(doctype (string-append