From 98360ba9117bb5e2719f6f891175f2c0257a8a84 Mon Sep 17 00:00:00 2001 From: Morgan Martin Date: Sat, 18 Dec 2021 11:32:31 -0500 Subject: [PATCH] patch README.md code example typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c402696..598019b 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ h.get('key') === 'value' for (let [key, value] of h) console.log(key, value); -Array.from(h.values()) === [{ prop: 1 }, 'value'], null]; +Array.from(h.values()) === [{ prop: 1 }, 'value', null]; // The data structure is fully immutable var h2 = h.delete('key');