From 5d02c3e4e6553ce3c8c1ae3e34e0ba3a9fcefc54 Mon Sep 17 00:00:00 2001 From: zertrin Date: Fri, 17 Mar 2017 18:18:19 +0800 Subject: [PATCH] Fix "NotImplentedError" typo in constants documentation `NotImplentedError` --> `NotImplementedError` --- Doc/library/constants.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/constants.rst b/Doc/library/constants.rst index f0742cee55bd55..469a3eed606ff0 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.