From: Max R Date: Thu, 18 Dec 2025 13:43:19 +0000 (-0500) Subject: Fix typo in `format_string` docstring (GH-136742) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0f01530bd5a12639287b329050a143e442b23061;p=thirdparty%2FPython%2Fcpython.git Fix typo in `format_string` docstring (GH-136742) --- diff --git a/Lib/locale.py b/Lib/locale.py index 37cafb4a601b..0f1b429ea419 100644 --- a/Lib/locale.py +++ b/Lib/locale.py @@ -214,7 +214,7 @@ def format_string(f, val, grouping=False, monetary=False): Grouping is applied if the third parameter is true. Conversion uses monetary thousands separator and grouping strings if - forth parameter monetary is true.""" + fourth parameter monetary is true.""" global _percent_re if _percent_re is None: import re