summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorlohaswinner <lohaswinner@gmail.com>2023-09-26 13:12:32 (GMT)
committerGitHub <noreply@github.com>2023-09-26 13:12:32 (GMT)
commit8100612bac2df1cbbb3a4cf646c4b82febf7807f (patch)
treef94c5cbcb7aa1b84b0d05553d09a27e7320f0384 /Doc
parent0eb98837b60bc58e57ad3e2b35c6b0e9ab634678 (diff)
downloadcpython-8100612bac2df1cbbb3a4cf646c4b82febf7807f.zip
cpython-8100612bac2df1cbbb3a4cf646c4b82febf7807f.tar.gz
cpython-8100612bac2df1cbbb3a4cf646c4b82febf7807f.tar.bz2
no-issue: Fix a typo in the parameter name of random.expovariate. (gh-109902)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/whatsnew/3.12.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.12.rst b/Doc/whatsnew/3.12.rst
index 76f1f00..4874a6c 100644
--- a/Doc/whatsnew/3.12.rst
+++ b/Doc/whatsnew/3.12.rst
@@ -752,7 +752,7 @@ random
* Add :func:`random.binomialvariate`.
(Contributed by Raymond Hettinger in :gh:`81620`.)
-* Add a default of ``lamb=1.0`` to :func:`random.expovariate`.
+* Add a default of ``lambd=1.0`` to :func:`random.expovariate`.
(Contributed by Raymond Hettinger in :gh:`100234`.)
shutil