From c0f5063031dcc56fbff55ed18472c5d600dc666b Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Mon, 7 Apr 2014 19:34:33 -0400 Subject: [PATCH] fix verb (closes #21174) --- Doc/library/exceptions.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Doc/library/exceptions.rst b/Doc/library/exceptions.rst index e3e6536e90..9943b9a55b 100644 --- a/Doc/library/exceptions.rst +++ b/Doc/library/exceptions.rst @@ -158,9 +158,9 @@ The following exceptions are the exceptions that are actually raised. .. exception:: GeneratorExit - Raise when a :term:`generator`\'s :meth:`close` method is called. It - directly inherits from :exc:`BaseException` instead of :exc:`StandardError` since - it is technically not an error. + Raised when a :term:`generator`\'s :meth:`close` method is called. It + directly inherits from :exc:`BaseException` instead of :exc:`StandardError` + since it is technically not an error. .. versionadded:: 2.5 -- 2.50.1