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))
(head ()
(meta ([http-equiv "content-type"]
[content "text-html; charset=utf-8"]))
[content "text/html; charset=utf-8"]))
,title
,(scribble-css-contents scribble-css (lookup-path scribble-css alt-paths))
,@(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">
<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
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.
-->
<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>
<script type="text/javascript" src="../scribble-common.js"></script>
</head>