From 12842f19911aed192999a43b9f0573a20ae68575 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jure=20=C5=A0orn?= <sornjure@gmail.com>
Date: Mon, 18 Feb 2019 21:19:27 +0100
Subject: [PATCH] Typo

---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 8c4c998..1a362d8 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 dynamically access functions first free variable use: `'<function>.__closure__[0].cell_contents'`.**
+* **To dynamically access function's first free variable use: `'<function>.__closure__[0].cell_contents'`.**
 
 #### Or:
 ```python