From f8a00f4af7476298672d8bafaca3e7103ace20a3 Mon Sep 17 00:00:00 2001 From: Mau Di Bert Date: Sat, 25 May 2019 09:26:37 -0300 Subject: [PATCH] Update solution.md Same case: Don't know if this fixes the repetition but I can't check it till merged. --- 1-js/05-data-types/03-string/1-ucfirst/solution.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/05-data-types/03-string/1-ucfirst/solution.md b/1-js/05-data-types/03-string/1-ucfirst/solution.md index 4809cf12..527d3978 100644 --- a/1-js/05-data-types/03-string/1-ucfirst/solution.md +++ b/1-js/05-data-types/03-string/1-ucfirst/solution.md @@ -15,7 +15,7 @@ There are two variants here: Here's the 2nd variant: -```js run +```js run demo function ucFirst(str) { if (!str) return str;