From 37b2b29f2270038ff308502e58a29b4abc060b15 Mon Sep 17 00:00:00 2001 From: eslopfer Date: Mon, 29 Aug 2022 13:07:24 +0100 Subject: [PATCH] docs(using-map): Fix broken markdown --- subjects/using-map/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/using-map/README.md b/subjects/using-map/README.md index afefc8dc..5c8c8776 100644 --- a/subjects/using-map/README.md +++ b/subjects/using-map/README.md @@ -22,7 +22,7 @@ citiesOnly([ ]) // -> ['Los Angeles', 'San Francisco'] ``` -#### Upper Casing States +#### Upper Casing States `upperCasingStates`: accepts an array of strings, and returns a new array of strings. The returned array will be the same as the argument, except the first letter of every word must be capitalized. ```js upperCasingStates(['alabama', 'new jersey']) // -> ['Alabama', 'New Jersey']