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