From 33e25dce1ece452926b5711567d29e4b95531eb1 Mon Sep 17 00:00:00 2001 From: Georgy Losenkov Date: Fri, 25 Dec 2020 08:23:53 +0700 Subject: [PATCH] Update article.md Fixed wording since "may not" means "prohibited" --- 1-js/05-data-types/06-iterable/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/05-data-types/06-iterable/article.md b/1-js/05-data-types/06-iterable/article.md index 018926f1..37d7e31e 100644 --- a/1-js/05-data-types/06-iterable/article.md +++ b/1-js/05-data-types/06-iterable/article.md @@ -174,7 +174,7 @@ When we use JavaScript for practical tasks in a browser or any other environment For instance, strings are both iterable (`for..of` works on them) and array-like (they have numeric indexes and `length`). -But an iterable may not be array-like. And vice versa an array-like may not be iterable. +But an iterable may be not array-like. And vice versa an array-like may be not iterable. For example, the `range` in the example above is iterable, but not array-like, because it does not have indexed properties and `length`.