diff options
author | Pavel <69010336+pavel-lexyr@users.noreply.github.com> | 2021-07-29 16:55:04 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-29 16:55:04 (GMT) |
commit | ccefa8a905c797e4a60078d5e1de846f929c6928 (patch) | |
tree | 56b6af38142450d77468a0464e8566b48207af0e /Doc/library | |
parent | ddd1c418c05da0de978c75dfb3e4a5b8d27e1d9f (diff) | |
download | cpython-ccefa8a905c797e4a60078d5e1de846f929c6928.zip cpython-ccefa8a905c797e4a60078d5e1de846f929c6928.tar.gz cpython-ccefa8a905c797e4a60078d5e1de846f929c6928.tar.bz2 |
bpo-44765: [doc] fix typo (GH-27430)
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/http.server.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/http.server.rst b/Doc/library/http.server.rst index 5ffe6ba..c3cee07 100644 --- a/Doc/library/http.server.rst +++ b/Doc/library/http.server.rst @@ -197,7 +197,7 @@ provides three different variants: request header it responds back with a ``100 Continue`` followed by ``200 OK`` headers. This method can be overridden to raise an error if the server does not - want the client to continue. For e.g. server can chose to send ``417 + want the client to continue. For e.g. server can choose to send ``417 Expectation Failed`` as a response header and ``return False``. .. versionadded:: 3.2 |