From 4ee44dc0024b6970ecfedafc145be32a21d26853 Mon Sep 17 00:00:00 2001 From: Vse Mozhe Buty Date: Sat, 10 Oct 2020 21:11:53 +0300 Subject: [PATCH] Fix a typo in a 1.5.5 task solution --- 1-js/05-data-types/05-array-methods/7-map-objects/solution.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/05-data-types/05-array-methods/7-map-objects/solution.md b/1-js/05-data-types/05-array-methods/7-map-objects/solution.md index 5d8bf4a1..2d8d4fb0 100644 --- a/1-js/05-data-types/05-array-methods/7-map-objects/solution.md +++ b/1-js/05-data-types/05-array-methods/7-map-objects/solution.md @@ -25,7 +25,7 @@ alert( usersMapped[0].id ); // 1 alert( usersMapped[0].fullName ); // John Smith ``` -Please note that in for the arrow functions we need to use additional brackets. +Please note that in the arrow functions we need to use additional brackets. We can't write like this: ```js