From 8ae87565ca09e8e41a506429de7db11948df123b Mon Sep 17 00:00:00 2001 From: murtuza Date: Fri, 11 Feb 2022 20:47:58 +0530 Subject: [PATCH] =?UTF-8?q?fixed=20a=20minor=20bug=20=E2=9C=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.js b/main.js index 3796c65..1047d21 100644 --- a/main.js +++ b/main.js @@ -31,7 +31,7 @@ function wavy(element, words, options) { let array_of_final_html_string = array_of_skills_splitted.map((a_skill) => { let array_of_html_of_letter = a_skill.map((letter) => { if(letter == " "){ - return ` `; + return ` `; } return `${letter}`; })