From f975728c63c82477321ee2846d4a7371a80bee07 Mon Sep 17 00:00:00 2001 From: hbar1st <35541470+hbar1st@users.noreply.github.com> Date: Fri, 17 Feb 2023 19:19:08 -0500 Subject: [PATCH] fix(curriculum): remove instruction about run button click (#49415) --- .../basic-javascript/understanding-boolean-values.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/understanding-boolean-values.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/understanding-boolean-values.md index 8898fcbab62..e423e9df365 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/understanding-boolean-values.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/understanding-boolean-values.md @@ -15,7 +15,7 @@ Another data type is the Boolean. Booleans may only be one of two val # --instructions-- -Modify the `welcomeToBooleans` function so that it returns `true` instead of `false` when the run button is clicked. +Modify the `welcomeToBooleans` function so that it returns `true` instead of `false`. # --hints--