From 983726f1986ff0bb34f6d063572640118e66491f Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Sat, 10 Dec 2022 17:13:15 +0000 Subject: [PATCH] Fix typo in comment --- Lib/test/test_fractions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_fractions.py b/Lib/test/test_fractions.py index 6f9f1082ccc5f9..6eff2445917a41 100644 --- a/Lib/test/test_fractions.py +++ b/Lib/test/test_fractions.py @@ -891,7 +891,7 @@ def test_format_e_presentation_type(self): # Thousands separators (F('1234567.123456'), ',.5e', '1.23457e+06'), (F('123.123456'), '012_.2e', '0_001.23e+02'), - # z flag is legal, but never makes a different to the output + # z flag is legal, but never makes a difference to the output (F(-1, 7**100), 'z.6e', '-3.091690e-85'), ] for fraction, spec, expected in testcases: