Skip to content

Commit

Permalink
docs update
Browse files Browse the repository at this point in the history
  • Loading branch information
thautwarm committed Jun 28, 2018
1 parent 882bbe7 commit 67c1461
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/general.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ Flow(range(20)).take_while(lambda e: e ** 2 < 12).to_list()._
from linq.core.collections import Generator as MyGenerator
Flow(
MyGenerator(lambda e: e + 1, 3)
).filter(
).filter(
lambda e: e ** 4 + e < (e // 2) ** (e // 3)
).first()
# => 18
Expand Down

0 comments on commit 67c1461

Please sign in to comment.