Skip to content

Commit

Permalink
fixed a minor bug ✨
Browse files Browse the repository at this point in the history
  • Loading branch information
murtuzaalisurti committed Feb 11, 2022
1 parent a21db78 commit 8ae8756
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 `<span>&nbsp;<span>`;
return `<span>&nbsp;</span>`;
}
return `<span>${letter}</span>`;
})
Expand Down

0 comments on commit 8ae8756

Please sign in to comment.