diff options
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 8df1457..0e3441c 100644 --- a/Doc/library/http.rst +++ b/Doc/library/http.rst @@ -38,7 +38,7 @@ associated messages through the :class:`http.HTTPStatus` enum: <HTTPStatus.OK: 200> >>> HTTPStatus.OK == 200 True - >>> http.HTTPStatus.OK.value + >>> HTTPStatus.OK.value 200 >>> HTTPStatus.OK.phrase 'OK' |