Skip to content

Commit 0c4c436

Browse files
authored
Fix typo in 3.10's What's New documentation (GH-25409)
"occured" -> "occurred"
1 parent 341e8a9 commit 0c4c436

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/whatsnew/3.10.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ For example::
420420
case ('warning', code, 40):
421421
print("A warning has been received.")
422422
case ('error', code, _):
423-
print(f"An error {code} occured.")
423+
print(f"An error {code} occurred.")
424424
425425
In the above case, ``test_variable`` will match for ('error', code, 100) and
426426
('error', code, 800).

0 commit comments

Comments
 (0)