From da2d2dfda8cf6274ededae670ee756ed9a8438cb Mon Sep 17 00:00:00 2001 From: Beksultan <96925396+Vazno@users.noreply.github.com> Date: Fri, 30 Sep 2022 13:56:29 +0600 Subject: [PATCH] Fixed typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dbc8014..bb4464b 100644 --- a/README.md +++ b/README.md @@ -191,7 +191,7 @@ False True ``` -When converted too a bool type, `[]` decay into `False` because it's empty, and `[[]]` becomes `True` since it's not empty. Therefore `all([[]])` is equivalent to `all([False])`, and `all([[[]]])` is the same as `all([True])`. As in `all([])` there is no `False` then is trivially `True`. +When converted to a bool type, `[]` decay into `False` because it's empty, and `[[]]` becomes `True` since it's not empty. Therefore `all([[]])` is equivalent to `all([False])`, and `all([[[]]])` is the same as `all([True])`. As in `all([])` there is no `False` then is trivially `True`. Consumed by the `iter` method ---------------------------