[3.13] Fix a typo in `Doc/tutorial/errors.rst` exception output (GH-126001) (#126009)

Fix a typo in ``Doc/tutorial/errors.rst`` exception output (GH-126001)
(cherry picked from commit a78d5b3242)

Co-authored-by: Bogdana Vereha <bogdanap@github.com>
This commit is contained in:
Miss Islington (bot) 2024-10-26 17:32:37 +02:00 committed by GitHub
parent 9c6cda5ccb
commit f521142b47
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -464,7 +464,7 @@ A more complicated example::
executing finally clause
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
divide("2", "0")
divide("2", "1")
~~~~~~^^^^^^^^^^
File "<stdin>", line 3, in divide
result = x / y