diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-09-27 15:39:36 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-27 15:39:36 (GMT) |
commit | 98a2d0e13b9483d3f83d3b55db29e93fe67a62a3 (patch) | |
tree | 6c595160896fcd43aec6d749a30f6be4f3edcba2 | |
parent | 26f542de228e332c21d8076e11457026e7020d77 (diff) | |
download | cpython-98a2d0e13b9483d3f83d3b55db29e93fe67a62a3.zip cpython-98a2d0e13b9483d3f83d3b55db29e93fe67a62a3.tar.gz cpython-98a2d0e13b9483d3f83d3b55db29e93fe67a62a3.tar.bz2 |
[3.12] no-issue: Fix a typo in the parameter name of random.expovariate. (gh-109902) (#109904)
no-issue: Fix a typo in the parameter name of random.expovariate. (gh-109902)
(cherry picked from commit 8100612bac2df1cbbb3a4cf646c4b82febf7807f)
Co-authored-by: lohaswinner <lohaswinner@gmail.com>
-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 d07ffbb..f2e94f9 100644 --- a/Doc/whatsnew/3.12.rst +++ b/Doc/whatsnew/3.12.rst @@ -818,7 +818,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 |