summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorzertrin <zrk951@gmail.com>2017-03-20 12:24:39 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2017-03-20 12:24:39 (GMT)
commit05f53735c8912f8df1077e897f052571e13c3496 (patch)
tree8f202f27fa1e6e252e1e843eccc666cba4569769
parentdf8280838f52d6ec45ba03ef734b0dec8a9c43fb (diff)
downloadcpython-05f53735c8912f8df1077e897f052571e13c3496.zip
cpython-05f53735c8912f8df1077e897f052571e13c3496.tar.gz
cpython-05f53735c8912f8df1077e897f052571e13c3496.tar.bz2
Fix "NotImplentedError" typo in constants documentation (#692)
`NotImplentedError` --> `NotImplementedError`
-rw-r--r--Doc/library/constants.rst2
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.