From 0126389f183d14c73fbc8757c3a1bee8ae8eda94 Mon Sep 17 00:00:00 2001 From: mdnavarro21 <53798314+mdnavarro21@users.noreply.github.com> Date: Wed, 11 Jan 2023 04:39:12 -0500 Subject: [PATCH] fix(curriculum): update javascript challenge description (#48989) Closes https://github.com/freeCodeCamp/freeCodeCamp/issues/48928 --- .../subtract-one-number-from-another-with-javascript.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/subtract-one-number-from-another-with-javascript.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/subtract-one-number-from-another-with-javascript.md index c60160bcf2d..83508131f07 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/subtract-one-number-from-another-with-javascript.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/subtract-one-number-from-another-with-javascript.md @@ -26,13 +26,13 @@ Change the `0` so the difference is `12`. # --hints-- -The variable `difference` should be equal to 12. +The variable `difference` should be equal to `12`. ```js assert(difference === 12); ``` -You should only subtract one number from 45. +You should only subtract one number from `45`. ```js assert(/difference=45-33;?/.test(__helpers.removeWhiteSpace(code)));