diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-03-20 12:54:52 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-20 12:54:52 (GMT) |
commit | fcd79ada4e4cf335372538b34c8eb89cf09f84b2 (patch) | |
tree | 8628416206b851d90fd1a910681b1e08e9b4e4c4 | |
parent | 6fad4090ec9a27f8572bb00661b9890f01fb62f7 (diff) | |
download | cpython-fcd79ada4e4cf335372538b34c8eb89cf09f84b2.zip cpython-fcd79ada4e4cf335372538b34c8eb89cf09f84b2.tar.gz cpython-fcd79ada4e4cf335372538b34c8eb89cf09f84b2.tar.bz2 |
Fix "NotImplentedError" typo in constants documentation (#692) (#739)
`NotImplentedError` --> `NotImplementedError`
(cherry picked from commit 05f53735c8912f8df1077e897f052571e13c3496)
-rw-r--r-- | Doc/library/constants.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/constants.rst b/Doc/library/constants.rst index f0742ce..469a3ee 100644 --- a/Doc/library/constants.rst +++ b/Doc/library/constants.rst @@ -46,7 +46,7 @@ A small number of constants live in the built-in namespace. They are: .. note:: - ``NotImplentedError`` and ``NotImplemented`` are not interchangeable, + ``NotImplementedError`` and ``NotImplemented`` are not interchangeable, even though they have similar names and purposes. See :exc:`NotImplementedError` for details on when to use it. |