From: Zackery Spytz Date: Wed, 14 Apr 2021 16:16:11 +0000 (-0600) Subject: Fix typo in 3.10's What's New documentation (GH-25409) X-Git-Tag: v3.10.0b1~281 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0c4c43632556a5ea5ef2267efeb17b332b861a19;p=thirdparty%2FPython%2Fcpython.git 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 69697e15d421..0962f04b3a7d 100644 --- a/Doc/whatsnew/3.10.rst +++ b/Doc/whatsnew/3.10.rst @@ -420,7 +420,7 @@ For example:: 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).