Skip to content

Commit f7b494c

Browse files
andresdelfinoDinoV
authored andcommitted
Update wsgiref.rst (#10488)
1 parent cec0184 commit f7b494c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/library/wsgiref.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -767,7 +767,7 @@ This is a working "Hello World" WSGI application::
767767
# use a function (note that you're not limited to a function, you can
768768
# use a class for example). The first argument passed to the function
769769
# is a dictionary containing CGI-style environment variables and the
770-
# second variable is the callable object (see PEP 333).
770+
# second variable is the callable object.
771771
def hello_world_app(environ, start_response):
772772
status = '200 OK' # HTTP Status
773773
headers = [('Content-type', 'text/plain; charset=utf-8')] # HTTP Headers

0 commit comments

Comments
 (0)