From 10e1aeb5fee0180f8239aeebce9f0cc1991d8987 Mon Sep 17 00:00:00 2001 From: shallow-beach <96891913+shallow-beach@users.noreply.github.com> Date: Fri, 23 Aug 2024 18:12:10 -0700 Subject: [PATCH] Update map-set/article.md clarify sentence (avoid 'type', add preposition+indef article) --- 1-js/05-data-types/07-map-set/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/05-data-types/07-map-set/article.md b/1-js/05-data-types/07-map-set/article.md index 37f5e48c2d..6a54185dd3 100644 --- a/1-js/05-data-types/07-map-set/article.md +++ b/1-js/05-data-types/07-map-set/article.md @@ -232,7 +232,7 @@ That's the same, because `Object.fromEntries` expects an iterable object as the ## Set -A [`Set`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set) is a special type collection - "set of values" (without keys), where each value may occur only once. +A [`Set`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set) is a special kind of collection - a "set of values" (without keys), where each value may occur only once. Its main methods are: