From 2a3260bb030b0d4620242110c0ee5abc379afa8d Mon Sep 17 00:00:00 2001 From: cocoatomo Date: Mon, 29 Jan 2018 17:30:48 +0900 Subject: [PATCH] Fix minor markup typo (#5407) --- Doc/library/functions.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index e47225718c..bfb813cf39 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -1423,7 +1423,7 @@ are always available. They are listed here in alphabetical order. a regular function and do something with its result. This is needed in some cases where you need a reference to a function from a class body and you want to avoid the automatic transformation to instance - method. For these cases, use this idiom: + method. For these cases, use this idiom:: class C: builtin_open = staticmethod(open) -- 2.40.0