From 527d9eb2e99088a1edf0e5d6464b668f6d4c992f Mon Sep 17 00:00:00 2001 From: Chalarangelo Date: Sun, 4 Sep 2022 14:17:13 +0300 Subject: [PATCH] Fix typos --- snippets/symbolizeKeys.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/symbolizeKeys.md b/snippets/symbolizeKeys.md index 667fb0294..ddf2ab6a5 100644 --- a/snippets/symbolizeKeys.md +++ b/snippets/symbolizeKeys.md @@ -10,7 +10,7 @@ firstSeen: 2021-08-01T05:00:00-04:00 Creates a new object, converting each key to a `Symbol`. - Use `Object.keys()` to get the keys of `obj`. -- Use `Array.prototype.reduce()` and `Symbol()` to create a new object where each key is converted to a `Symbol`. +- Use `Array.prototype.reduce()` and `Symbol` to create a new object where each key is converted to a `Symbol`. ```js const symbolizeKeys = obj =>