From 1a8de82d3a30ecc7ed18a5ad51a0e17417ebfb89 Mon Sep 17 00:00:00 2001 From: Ashwin Vishnu <9155111+ashwinvis@users.noreply.github.com> Date: Mon, 9 Sep 2019 14:42:27 +0200 Subject: [PATCH] Fix typo in math.prod example (GH-15614) --- Doc/whatsnew/3.8.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst index 4a1362d943..2b4eb63d61 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`) -- 2.40.0