From c02d821fd7052fb46bee6def362e0d0485ec7c7e Mon Sep 17 00:00:00 2001 From: JonnyTech <3584732+JonnyTech@users.noreply.github.com> Date: Fri, 22 Nov 2024 12:29:26 +0000 Subject: [PATCH] typo "purle" => "purple" Signed-off-by: JonnyTech <3584732+JonnyTech@users.noreply.github.com> --- examples/html-starter-example/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/html-starter-example/index.html b/examples/html-starter-example/index.html index 593d6b9..8c3d55b 100644 --- a/examples/html-starter-example/index.html +++ b/examples/html-starter-example/index.html @@ -45,11 +45,11 @@ // Set an interval to change the text color every 2 seconds setInterval(() => { // Change the text color based on the value of isPurple - helloWorldText.style.color = isPurple ? "purle" : "white"; + helloWorldText.style.color = isPurple ? "purple" : "white"; // Toggle the boolean value isPurple = !isPurple; }, 2000); - \ No newline at end of file +