docs(using-map): Fix broken markdown

This commit is contained in:
eslopfer 2022-08-29 13:07:24 +01:00
parent 7db94af256
commit 37b2b29f22
1 changed files with 1 additions and 1 deletions

View File

@ -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']