summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-01-29 09:24:09 (GMT)
committerRaymond Hettinger <rhettinger@users.noreply.github.com>2018-01-29 09:24:09 (GMT)
commit190de183e5e2a11591e28e2c413a70079d4c92aa (patch)
tree692fcd317606509f9f70a398613e3c4358468d86
parent3cfb84c65790f5f9377574f9be0799bdd9d0132c (diff)
downloadcpython-190de183e5e2a11591e28e2c413a70079d4c92aa.zip
cpython-190de183e5e2a11591e28e2c413a70079d4c92aa.tar.gz
cpython-190de183e5e2a11591e28e2c413a70079d4c92aa.tar.bz2
Fix minor markup typo (GH-5407) (#5416)
(cherry picked from commit 2a3260bb030b0d4620242110c0ee5abc379afa8d)
-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 7a7a84d..3b479bd 100644
--- a/Doc/library/functions.rst
+++ b/Doc/library/functions.rst
@@ -1409,7 +1409,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)