From 1ec77cc1d25755a7983eec343a7e2cedae1abde4 Mon Sep 17 00:00:00 2001 From: Tobias Sette Date: Sat, 6 Jul 2024 01:32:23 -0300 Subject: [PATCH] docs(README.md): fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c0bc887..77be906 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ Given `fib` a generator of Fibonacci numbers: sum(fib() | where(lambda x: x % 2 == 0) | take_while(lambda x: x < 4000000)) ``` -Each pipes is lazy evalatated, can be aliased, and partially +Each pipes is lazy evaluated, can be aliased, and partially initialized, so it could be rewritten as: ```python