From e1de4415c1caba94a23ba1595afef1df87fb407b Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Fri, 5 May 2017 02:05:52 +0300 Subject: [PATCH] Update article.md --- 1-js/05-data-types/07-map-set-weakmap-weakset/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/05-data-types/07-map-set-weakmap-weakset/article.md b/1-js/05-data-types/07-map-set-weakmap-weakset/article.md index 06726ac3..c838b285 100644 --- a/1-js/05-data-types/07-map-set-weakmap-weakset/article.md +++ b/1-js/05-data-types/07-map-set-weakmap-weakset/article.md @@ -253,7 +253,7 @@ john = null; Usually, properties of an object or elements of an array or another data structure are considered reachable and kept in memory while that data structure is in memory. -In a regular `Map`, it does not matter if we store an object as a key or as a value.It is kept in memory even if there are no more references to it. +In a regular `Map`, it does not matter if we store an object as a key or as a value. It's kept in memory even if there are no more references to it. For instance: ```js