diff options
author | lohaswinner <lohaswinner@gmail.com> | 2023-09-26 13:12:32 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-26 13:12:32 (GMT) |
commit | 8100612bac2df1cbbb3a4cf646c4b82febf7807f (patch) | |
tree | f94c5cbcb7aa1b84b0d05553d09a27e7320f0384 /Doc | |
parent | 0eb98837b60bc58e57ad3e2b35c6b0e9ab634678 (diff) | |
download | cpython-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.rst | 2 |
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 |