From a6f45a40326053bd69bd0704bd5eabf58aaba5f1 Mon Sep 17 00:00:00 2001 From: Chris Nguyen <149638283+chrisnguyen928@users.noreply.github.com> Date: Wed, 22 Jan 2025 02:12:17 -0800 Subject: [PATCH] fix(curriculum): fix typo in JavaScript Quiz (#58276) Co-authored-by: root --- .../66edd07682767adff3a6231e.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/curriculum/challenges/english/25-front-end-development/quiz-dom-manipulation-and-click-event-with-javascript/66edd07682767adff3a6231e.md b/curriculum/challenges/english/25-front-end-development/quiz-dom-manipulation-and-click-event-with-javascript/66edd07682767adff3a6231e.md index 73d4b048ea9..c5957d5c06c 100644 --- a/curriculum/challenges/english/25-front-end-development/quiz-dom-manipulation-and-click-event-with-javascript/66edd07682767adff3a6231e.md +++ b/curriculum/challenges/english/25-front-end-development/quiz-dom-manipulation-and-click-event-with-javascript/66edd07682767adff3a6231e.md @@ -276,7 +276,7 @@ Which of these does not set the element text color to `red`. #### --text-- -In the case of a click event, which `Event` property returns the clicked sub-element that triggerred the parent's callback? +In the case of a click event, which `Event` property returns the clicked sub-element that triggered the parent's callback? #### --distractors-- @@ -427,7 +427,7 @@ The first parameter is the function callback and the second is the delay duratio --- -`setTimeout` calls a function once after a delay and `setInterval` call a function continously after an interval delay. +`setTimeout` calls a function once after a delay and `setInterval` call a function continuously after an interval delay. ---