Fix grammar
diff --git a/Doc/tutorial/errors.rst b/Doc/tutorial/errors.rst
index 6d14cb3..6f77def 100644
--- a/Doc/tutorial/errors.rst
+++ b/Doc/tutorial/errors.rst
@@ -184,7 +184,7 @@
    ... except Exception as inst:
    ...    print type(inst)     # the exception instance
    ...    print inst.args      # arguments stored in .args
-   ...    print inst           # __str__ allows args to printed directly
+   ...    print inst           # __str__ allows args to be printed directly
    ...    x, y = inst.args
    ...    print 'x =', x
    ...    print 'y =', y