Merge pull request #1039 from StevenMaude/fix-comment-typos

Fix comment typos
This commit is contained in:
Randall Leeds 2015-05-27 09:34:19 -07:00
commit 3c2533d122

View File

@ -126,7 +126,7 @@ def create(req, sock, client, server, cfg):
and client[0] not in cfg.forwarded_allow_ips): and client[0] not in cfg.forwarded_allow_ips):
secure_headers = {} secure_headers = {}
# add the headers tot the environ # add the headers to the environ
for hdr_name, hdr_value in req.headers: for hdr_name, hdr_value in req.headers:
if hdr_name == "EXPECT": if hdr_name == "EXPECT":
# handle expect # handle expect
@ -151,7 +151,7 @@ def create(req, sock, client, server, cfg):
hdr_value = "%s,%s" % (environ[key], hdr_value) hdr_value = "%s,%s" % (environ[key], hdr_value)
environ[key] = hdr_value environ[key] = hdr_value
# set the url schejeme # set the url scheme
environ['wsgi.url_scheme'] = url_scheme environ['wsgi.url_scheme'] = url_scheme
# set the REMOTE_* keys in environ # set the REMOTE_* keys in environ