diff --git a/content/blog/2022-pipe-v2.md b/content/blog/2022-pipe-v2.md index e7feeae..495bc5c 100644 --- a/content/blog/2022-pipe-v2.md +++ b/content/blog/2022-pipe-v2.md @@ -38,7 +38,7 @@ Before `pipe 2`, the following were already valid: It allows to **name things**, naming things make code more readable so I wanted more of it. -It was probably underrated, I link to do this kind of things: +It was probably underrated, I like to do this kind of things: ```python >>> isort = sort(key=lambda x: x**2) @@ -135,7 +135,7 @@ Remember I said currying? Yes you can abuse the syntax, but please don't: ```python >>> from pipe import sort >>> lines | grep()(invert=True)()(flags=re.I)()("https://")() | sort -['Just no an URL', 'http://detectportal.firefox.com/'] +['Just not an URL', 'http://detectportal.firefox.com/'] ``` -As I like to say: « It's not because it's possible than you should do it ». +As I like to say: « It's not because it's possible that you should do it ».