Skip to content

Commit f86b0f4

Browse files
committed
improve docstring
1 parent 8438f07 commit f86b0f4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

unpythonic/env.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ class env:
3939
4040
Context manager::
4141
42-
with env(s="hello", orange="fruit", answer=42) as e2:
43-
... # ...code that uses e2...
42+
with env(s="hello", orange="fruit", answer=42) as e:
43+
... # ...code that uses e...
4444
45-
When the `with` block exits, `e2` forgets all its bindings. The `e2`
45+
When the `with` block exits, `e` forgets all its bindings. The `e`
4646
instance itself will remain alive due to Python's scoping rules.
4747
"""
4848
# do not allow bindings that would break functionality.

0 commit comments

Comments
 (0)