[Python-checkins] Add missing comma to wsgiref doc (GH-9932)

Pablo Galindo webhook-mailer at python.org
Wed Oct 17 17:55:41 EDT 2018


https://github.com/python/cpython/commit/0f11a88622ceda93a6b7eed7db52a5eb8083445f
commit: 0f11a88622ceda93a6b7eed7db52a5eb8083445f
branch: master
author: Cheryl Sabella <cheryl.sabella at gmail.com>
committer: Pablo Galindo <Pablogsal at gmail.com>
date: 2018-10-17T22:55:32+01:00
summary:

Add missing comma to wsgiref doc (GH-9932)

files:
M Doc/library/wsgiref.rst

diff --git a/Doc/library/wsgiref.rst b/Doc/library/wsgiref.rst
index f8811c5a3617..e0f745f810b9 100644
--- a/Doc/library/wsgiref.rst
+++ b/Doc/library/wsgiref.rst
@@ -54,7 +54,7 @@ parameter expect a WSGI-compliant dictionary to be supplied; please see
 
    This function is useful when creating a gateway that wraps CGI or a CGI-like
    protocol such as FastCGI.  Typically, servers providing such protocols will
-   include a ``HTTPS`` variable with a value of "1" "yes", or "on" when a request
+   include a ``HTTPS`` variable with a value of "1", "yes", or "on" when a request
    is received via SSL.  So, this function returns "https" if such a value is
    found, and "http" otherwise.
 



More information about the Python-checkins mailing list