summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.6.rst
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2016-09-10 00:47:38 (GMT)
committerZachary Ware <zachary.ware@gmail.com>2016-09-10 00:47:38 (GMT)
commitb44acebc7bdde44dc1f952a8fa498a155a35e509 (patch)
treeb5e1ac9a656607c064d8690b4f4757f1d221810e /Doc/whatsnew/3.6.rst
parentdec2df3df321c3d6bed045d3125564006942b3d9 (diff)
downloadcpython-b44acebc7bdde44dc1f952a8fa498a155a35e509.zip
cpython-b44acebc7bdde44dc1f952a8fa498a155a35e509.tar.gz
cpython-b44acebc7bdde44dc1f952a8fa498a155a35e509.tar.bz2
Actually fix suspicious markup, I ignored it too readily
Diffstat (limited to 'Doc/whatsnew/3.6.rst')
-rw-r--r--Doc/whatsnew/3.6.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst
index 7b4d0b3..4083f39 100644
--- a/Doc/whatsnew/3.6.rst
+++ b/Doc/whatsnew/3.6.rst
@@ -139,7 +139,7 @@ PEP 515: Underscores in Numeric Literals
Prior to PEP 515, there was no support for writing long numeric
literals with some form of separator to improve readability. For
-instance, how big is ``1000000000000000```? With :pep:`515`, though,
+instance, how big is ``1000000000000000``? With :pep:`515`, though,
you can use underscores to separate digits as desired to make numeric
literals easier to read: ``1_000_000_000_000_000``. Underscores can be
used with other numeric literals beyond integers, e.g.