diff options
author | Benjamin Peterson <benjamin@python.org> | 2022-07-12 21:34:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-12 21:34:23 (GMT) |
commit | e39ce7d4871429d3a48f51139eff9abacd719361 (patch) | |
tree | 9ca3ca0a011fc6f38cb7699bdc790dadebf2dce9 /Lib/statistics.py | |
parent | 47f50cbab79d3639c59af7f651dfdebba57b08ce (diff) | |
download | cpython-e39ce7d4871429d3a48f51139eff9abacd719361.zip cpython-e39ce7d4871429d3a48f51139eff9abacd719361.tar.gz cpython-e39ce7d4871429d3a48f51139eff9abacd719361.tar.bz2 |
Fix typo in _exact_ratio comment. (GH-94789)
Diffstat (limited to 'Lib/statistics.py')
-rw-r--r-- | Lib/statistics.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/statistics.py b/Lib/statistics.py index a2793d9..9d775e7 100644 --- a/Lib/statistics.py +++ b/Lib/statistics.py @@ -298,7 +298,7 @@ def _exact_ratio(x): # The integer ratios for binary floats can have numerators or # denominators with over 300 decimal digits. The problem is more - # acute with decimal floats where the the default decimal context + # acute with decimal floats where the default decimal context # supports a huge range of exponents from Emin=-999999 to # Emax=999999. When expanded with as_integer_ratio(), numbers like # Decimal('3.14E+5000') and Decimal('3.14E-5000') have large |