From 1be6408863f33bf3aa4227bd1e9bf13dd187f43b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Mon, 18 Feb 2019 00:38:23 +0100 Subject: [PATCH] Closure --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1ddb871..c9e71f5 100644 --- a/README.md +++ b/README.md @@ -543,7 +543,7 @@ creature = Creature() Closure ------- **We have a closure in Python when:** -* **Nested function references a value of its enclosing function and then** +* **A nested function references a value of its enclosing function and then** * **the enclosing function returns the nested function.** ```python