typo (thank you @meredithmichael)

This commit is contained in:
hellerve
2016-09-12 21:56:02 +02:00
parent b809a26bb4
commit 8c3309576c

View File

@@ -14,7 +14,7 @@ Context managers provide the programmer with an easy way
to work with resources that need management, i.e. explicit to work with resources that need management, i.e. explicit
cleanup and/or deletion. Consider files for example: if cleanup and/or deletion. Consider files for example: if
we want to use them, we need to open them, work with them we want to use them, we need to open them, work with them
and the close them again. Context managers provide you with and then close them again. Context managers provide you with
a context in which a file will be open, managing the closing a context in which a file will be open, managing the closing
itself when you are done. itself when you are done.