summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorAshwin Vishnu <9155111+ashwinvis@users.noreply.github.com>2019-09-09 12:42:27 (GMT)
committerPablo Galindo <Pablogsal@gmail.com>2019-09-09 12:42:27 (GMT)
commit1a8de82d3a30ecc7ed18a5ad51a0e17417ebfb89 (patch)
tree81ebd3090080e132284f3156aa77d98b884c252f /Doc/whatsnew
parented70129e15ea028469145111044a4349960a4e6f (diff)
downloadcpython-1a8de82d3a30ecc7ed18a5ad51a0e17417ebfb89.zip
cpython-1a8de82d3a30ecc7ed18a5ad51a0e17417ebfb89.tar.gz
cpython-1a8de82d3a30ecc7ed18a5ad51a0e17417ebfb89.tar.bz2
Fix typo in math.prod example (GH-15614)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.8.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst
index 4a1362d..2b4eb63 100644
--- a/Doc/whatsnew/3.8.rst
+++ b/Doc/whatsnew/3.8.rst
@@ -767,7 +767,7 @@ numbers::
>>> prior = 0.8
>>> likelihoods = [0.625, 0.84, 0.30]
- >>> (link: http://math.prod) math.prod(likelihoods, start=prior)
+ >>> math.prod(likelihoods, start=prior)
0.126
(Contributed by Pablo Galindo in :issue:`35606`)