From 8c3309576c39db072cba7c004dc2dc7c4127ebd3 Mon Sep 17 00:00:00 2001 From: hellerve Date: Mon, 12 Sep 2016 21:56:02 +0200 Subject: [PATCH] typo (thank you @meredithmichael) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.