Fix typo in math.prod example (GH-15614)

This commit is contained in:
Ashwin Vishnu 2019-09-09 14:42:27 +02:00 committed by Pablo Galindo
parent ed70129e15
commit 1a8de82d3a
1 changed files with 1 additions and 1 deletions

View File

@ -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`)