]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Add missing comma to wsgiref doc (GH-9932)
authorCheryl Sabella <cheryl.sabella@gmail.com>
Wed, 17 Oct 2018 21:55:32 +0000 (17:55 -0400)
committerPablo Galindo <Pablogsal@gmail.com>
Wed, 17 Oct 2018 21:55:32 +0000 (22:55 +0100)
Doc/library/wsgiref.rst

index f8811c5a36174fc885d45fe84e68017e4f7cdc92..e0f745f810b9ce121c5f1c9616e429be45d55e2e 100644 (file)
@@ -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.