From e06b69bc050b7c902b0dd4b388e57e890a6d4ce9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Mon, 18 Feb 2019 21:18:29 +0100 Subject: [PATCH] Typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f11ce45..8c4c998 100644 --- a/README.md +++ b/README.md @@ -566,7 +566,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 dynamically access functions first free variable use: `'.__closure__[0].cell_contents'`.** #### Or: ```python