From 31d0f621a76d88359179fdaac27ae45baf190f11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Fri, 1 Feb 2019 11:16:25 +0100 Subject: [PATCH] Closure --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8187e48..694016f 100644 --- a/README.md +++ b/README.md @@ -554,7 +554,7 @@ def get_multiplier(a): ``` * **If multiple nested functions within enclosing function reference the same value, that value gets shared.** -* **To dynamicaly acces functions first free variable use `'.__closure__[0].cell_contents`'.** +* **To dynamicaly acces functions first free variable use `'.__closure__[0].cell_contents'`.** #### Or: ```python