]> granicus.if.org Git - python/commitdiff
Fix "NotImplentedError" typo in constants documentation (#692) (#739)
authorSerhiy Storchaka <storchaka@gmail.com>
Mon, 20 Mar 2017 12:54:52 +0000 (14:54 +0200)
committerGitHub <noreply@github.com>
Mon, 20 Mar 2017 12:54:52 +0000 (14:54 +0200)
`NotImplentedError` --> `NotImplementedError`
(cherry picked from commit 05f53735c8912f8df1077e897f052571e13c3496)

Doc/library/constants.rst

index f0742cee55bd55291842e52c9d1aaed695f12313..469a3eed606ff079eb9a81b2d0b66c5cce037ed4 100644 (file)
@@ -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.