Fix typo in 3.10's What's New documentation (GH-25409)
"occured" -> "occurred"
diff --git a/Doc/whatsnew/3.10.rst b/Doc/whatsnew/3.10.rst
index 69697e1..0962f04 100644
--- a/Doc/whatsnew/3.10.rst
+++ b/Doc/whatsnew/3.10.rst
@@ -420,7 +420,7 @@
case ('warning', code, 40):
print("A warning has been received.")
case ('error', code, _):
- print(f"An error {code} occured.")
+ print(f"An error {code} occurred.")
In the above case, ``test_variable`` will match for ('error', code, 100) and
('error', code, 800).