From 67f02ec2bcdba06ea973a2f4015ab8fd9dc55c24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Fri, 1 Feb 2019 11:12:49 +0100 Subject: [PATCH] Closure --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6ce52e1..8187e48 100644 --- a/README.md +++ b/README.md @@ -537,7 +537,7 @@ creature = Creature() Closure ------- **We have a closure in Python when:** -* **A 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