diff options
author | Phil Jones <philip.graham.jones@googlemail.com> | 2019-01-31 10:08:57 (GMT) |
---|---|---|
committer | Inada Naoki <methane@users.noreply.github.com> | 2019-01-31 10:08:57 (GMT) |
commit | d97daebfa69b4df95231bcae4123eacad6a48d14 (patch) | |
tree | e79d0f6e3ddde859c4accb4f4f2a1876cbbc867c /Doc | |
parent | 0bb4bdf0d93b301407774c4ffd6df54cff947df8 (diff) | |
download | cpython-d97daebfa69b4df95231bcae4123eacad6a48d14.zip cpython-d97daebfa69b4df95231bcae4123eacad6a48d14.tar.gz cpython-d97daebfa69b4df95231bcae4123eacad6a48d14.tar.bz2 |
doc: http: Fix enum name for status code 416 (GH-11689)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/http.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/http.rst b/Doc/library/http.rst index 7c34004..88d62cc 100644 --- a/Doc/library/http.rst +++ b/Doc/library/http.rst @@ -96,7 +96,7 @@ Code Enum Name Details ``413`` ``REQUEST_ENTITY_TOO_LARGE`` HTTP/1.1 :rfc:`7231`, Section 6.5.11 ``414`` ``REQUEST_URI_TOO_LONG`` HTTP/1.1 :rfc:`7231`, Section 6.5.12 ``415`` ``UNSUPPORTED_MEDIA_TYPE`` HTTP/1.1 :rfc:`7231`, Section 6.5.13 -``416`` ``REQUEST_RANGE_NOT_SATISFIABLE`` HTTP/1.1 Range Requests :rfc:`7233`, Section 4.4 +``416`` ``REQUESTED_RANGE_NOT_SATISFIABLE`` HTTP/1.1 Range Requests :rfc:`7233`, Section 4.4 ``417`` ``EXPECTATION_FAILED`` HTTP/1.1 :rfc:`7231`, Section 6.5.14 ``421`` ``MISDIRECTED_REQUEST`` HTTP/2 :rfc:`7540`, Section 9.1.2 ``422`` ``UNPROCESSABLE_ENTITY`` WebDAV :rfc:`4918`, Section 11.2 |