Skip to content

Commit 9dc802b

Browse files
authored
typo "purle" => "purple" (#75)
Signed-off-by: JonnyTech <[email protected]>
1 parent cb69037 commit 9dc802b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/html-starter-example/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@
4545
// Set an interval to change the text color every 2 seconds
4646
setInterval(() => {
4747
// Change the text color based on the value of isPurple
48-
helloWorldText.style.color = isPurple ? "purle" : "white";
48+
helloWorldText.style.color = isPurple ? "purple" : "white";
4949
// Toggle the boolean value
5050
isPurple = !isPurple;
5151
}, 2000);
5252
</script>
5353
</body>
5454

55-
</html>
55+
</html>

0 commit comments

Comments
 (0)