From: Georg Brandl Date: Tue, 16 Sep 2008 10:17:45 +0000 (+0000) Subject: Fix typo. X-Git-Tag: v2.6rc2~11 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c8fd1bc4dba361a75f2cc557256502ad43d59091;p=python Fix typo. --- diff --git a/Doc/tutorial/errors.rst b/Doc/tutorial/errors.rst index e5fb39dad6..1740396567 100644 --- a/Doc/tutorial/errors.rst +++ b/Doc/tutorial/errors.rst @@ -374,7 +374,7 @@ the same :keyword:`try` statement works as of Python 2.5):: As you can see, the :keyword:`finally` clause is executed in any event. The :exc:`TypeError` raised by dividing two strings is not handled by the :keyword:`except` clause and therefore re-raised after the :keyword:`finally` -clauses has been executed. +clause has been executed. In real world applications, the :keyword:`finally` clause is useful for releasing external resources (such as files or network connections), regardless