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