projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ed70129
)
Fix typo in math.prod example (GH-15614)
author
Ashwin Vishnu
<9155111+ashwinvis@users.noreply.github.com>
Mon, 9 Sep 2019 12:42:27 +0000
(14:42 +0200)
committer
Pablo Galindo
<Pablogsal@gmail.com>
Mon, 9 Sep 2019 12:42:27 +0000
(13:42 +0100)
Doc/whatsnew/3.8.rst
patch
|
blob
|
history
diff --git
a/Doc/whatsnew/3.8.rst
b/Doc/whatsnew/3.8.rst
index 4a1362d943c8098cda3a807a2ef64003dcd8dd5b..2b4eb63d61f6589058e1c852aea1503fd1cf78be 100644
(file)
--- 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`)