From 416fe240dd50181f8b559a86ce42e911526dceec Mon Sep 17 00:00:00 2001 From: Gagan Bhullar Date: Fri, 21 Jun 2024 13:24:14 -0600 Subject: [PATCH] fix(curriculum): update missing double quote in build telephone number (#55272) --- .../build-a-telephone-number-validator.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/build-a-telephone-number-validator-project/build-a-telephone-number-validator.md b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/build-a-telephone-number-validator-project/build-a-telephone-number-validator.md index 647c355ccc8..dff374ce88d 100644 --- a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/build-a-telephone-number-validator-project/build-a-telephone-number-validator.md +++ b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/build-a-telephone-number-validator-project/build-a-telephone-number-validator.md @@ -27,7 +27,7 @@ Note that the area code is required. Also, if the country code is provided, you **User Stories:** 1. You should have an `input` element with an `id` of `"user-input"` -1. You should have a `button` element with an `id` of `"check-btn` +1. You should have a `button` element with an `id` of `"check-btn"` 1. You should have a `button` element with an `id` of `"clear-btn"` 1. You should have a `div`, `span` or `p` element with an `id` of `"results-div"` 1. When you click on the `#check-btn` element without entering a value into the `#user-input` element, an alert should appear with the text `"Please provide a phone number"`