diff options
author | Cheryl Sabella <cheryl.sabella@gmail.com> | 2018-10-17 21:55:32 (GMT) |
---|---|---|
committer | Pablo Galindo <Pablogsal@gmail.com> | 2018-10-17 21:55:32 (GMT) |
commit | 0f11a88622ceda93a6b7eed7db52a5eb8083445f (patch) | |
tree | 58915c6291d4ecf9fe1dee36576e6068d3134407 | |
parent | fcd5e84a515e19409840c570730f0728e9fcfc83 (diff) | |
download | cpython-0f11a88622ceda93a6b7eed7db52a5eb8083445f.zip cpython-0f11a88622ceda93a6b7eed7db52a5eb8083445f.tar.gz cpython-0f11a88622ceda93a6b7eed7db52a5eb8083445f.tar.bz2 |
Add missing comma to wsgiref doc (GH-9932)
-rw-r--r-- | Doc/library/wsgiref.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/wsgiref.rst b/Doc/library/wsgiref.rst index f8811c5..e0f745f 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. |