From: Serhiy Storchaka Date: Mon, 20 Mar 2017 12:54:52 +0000 (+0200) Subject: Fix "NotImplentedError" typo in constants documentation (#692) (#739) X-Git-Tag: v3.6.2rc1~298 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fcd79ada4e4cf335372538b34c8eb89cf09f84b2;p=python Fix "NotImplentedError" typo in constants documentation (#692) (#739) `NotImplentedError` --> `NotImplementedError` (cherry picked from commit 05f53735c8912f8df1077e897f052571e13c3496) --- diff --git a/Doc/library/constants.rst b/Doc/library/constants.rst index f0742cee55..469a3eed60 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.