summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorcocoatomo <cocoatomo77@gmail.com>2018-01-29 08:30:48 (GMT)
committerRaymond Hettinger <rhettinger@users.noreply.github.com>2018-01-29 08:30:48 (GMT)
commit2a3260bb030b0d4620242110c0ee5abc379afa8d (patch)
treec90bea67b643c2f6ea289e5472da53c868f76443 /Doc
parent95e214713a7da4e5cbfb73f35b2119f76074fc3f (diff)
downloadcpython-2a3260bb030b0d4620242110c0ee5abc379afa8d.zip
cpython-2a3260bb030b0d4620242110c0ee5abc379afa8d.tar.gz
cpython-2a3260bb030b0d4620242110c0ee5abc379afa8d.tar.bz2
Fix minor markup typo (#5407)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/functions.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst
index e472257..bfb813c 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)