Fix the obligatory Stupid Mistake.

This commit is contained in:
Eli Barzilay 2013-09-28 15:28:00 -04:00
parent ab0cde405a
commit 1ccdc3a60d

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