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