diff --git a/README.md b/README.md index 8d5e3cb..d081d1c 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Context managers provide the programmer with an easy way to work with resources that need management, i.e. explicit cleanup and/or deletion. Consider files for example: if 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 itself when you are done.