Revert r58075 (incorrect docs patch).
diff --git a/Doc/tutorial/errors.rst b/Doc/tutorial/errors.rst
index 162457e..fa2d422 100644
--- a/Doc/tutorial/errors.rst
+++ b/Doc/tutorial/errors.rst
@@ -115,9 +115,9 @@
 handlers for different exceptions.  At most one handler will be executed.
 Handlers only handle exceptions that occur in the corresponding try clause, not
 in other handlers of the same :keyword:`try` statement.  An except clause may
-name multiple exceptions as a tuple, for example::
+name multiple exceptions as a parenthesized tuple, for example::
 
-   ... except RuntimeError, TypeError, NameError:
+   ... except (RuntimeError, TypeError, NameError):
    ...     pass
 
 The last except clause may omit the exception name(s), to serve as a wildcard.