Typo fix in content-type: text-html -> text/html

This commit is contained in:
Samuel Bronson 2012-10-14 13:08:24 -04:00 committed by Matthew Flatt
parent b366d04792
commit a66fa77e2e
2 changed files with 4 additions and 4 deletions

View File

@ -669,7 +669,7 @@
`(html ,(style->attribs (part-style d)) `(html ,(style->attribs (part-style d))
(head () (head ()
(meta ([http-equiv "content-type"] (meta ([http-equiv "content-type"]
[content "text-html; charset=utf-8"])) [content "text/html; charset=utf-8"]))
,title ,title
,(scribble-css-contents scribble-css (lookup-path scribble-css alt-paths)) ,(scribble-css-contents scribble-css (lookup-path scribble-css alt-paths))
,@(map (lambda (style-file) ,@(map (lambda (style-file)

View File

@ -1,13 +1,13 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html> <html>
<!-- <!--
This page serves as a trampoline -- it finds an "hq" parameter, This page serves as a trampoline - it finds an "hq" parameter,
stores it in a cookie, and continues to the search page. This stores it in a cookie, and continues to the search page. This
avoids having the "hq" argument be on the search page -- since then avoids having the "hq" argument be on the search page - since then
when you refresh the search you will reset the cookie. when you refresh the search you will reset the cookie.
--> -->
<head> <head>
<meta http-equiv="content-type" content="text-html; charset=utf-8" /> <meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Search Manuals</title> <title>Search Manuals</title>
<script type="text/javascript" src="../scribble-common.js"></script> <script type="text/javascript" src="../scribble-common.js"></script>
</head> </head>