Skip to content

Commit 795c3c1

Browse files
committed
tiny fix
1 parent 093c709 commit 795c3c1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ WSGI Server
3333
content_l = len(contents)
3434
headers = (
3535
("Content-Length", content_l),
36-
("Content-type", "text/plain"),
36+
("Content-Type", "text/plain"),
3737
("Connection", "keep-alive")
3838
)
3939
start_response(status, headers)

readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def app(environ, start_response):
4242
content_l = len(contents)
4343
headers = (
4444
("Content-Length", content_l),
45-
("Content-type", "text/plain"),
45+
("Content-Type", "text/plain"),
4646
("Connection", "keep-alive")
4747
)
4848
start_response(status, headers)

0 commit comments

Comments
 (0)