Skip to content

Commit e6cbaab

Browse files
committed
fix indentation in docstring example
1 parent 7437833 commit e6cbaab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

unpythonic/let.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,8 @@ def let(body, **bindings):
128128
129129
from unpythonic.misc import begin
130130
counter = let(x=0,
131-
body=lambda e: lambda: begin(e.set("x", e.x + 1),
132-
e.x))
131+
body=lambda e: lambda: begin(e.set("x", e.x + 1),
132+
e.x))
133133
counter() # --> 1
134134
counter() # --> 2
135135
counter() # --> 3

0 commit comments

Comments
 (0)