From 18e821bcd30a3907c537c0f3938238efb09773cd Mon Sep 17 00:00:00 2001 From: "Nicholas Carrigan (he/him)" Date: Mon, 1 Feb 2021 05:52:39 -0800 Subject: [PATCH] fix: remove clunky sentence (#40751) --- .../basic-javascript/escape-sequences-in-strings.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/escape-sequences-in-strings.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/escape-sequences-in-strings.md index d168b0fea5..700cf22c26 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/escape-sequences-in-strings.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/escape-sequences-in-strings.md @@ -28,9 +28,7 @@ Assign the following three lines of text into the single variable `myStr` using You will need to use escape sequences to insert special characters correctly. You will also need to follow the spacing as it looks above, with no spaces between escape sequences or words. -Here is the text with the escape sequences written out. - -"FirstLinenewlinetabbackslashSecondLine`newline`ThirdLine" +**Note:** The indentation for `SecondLine` is achieved with the tab escape character, not spaces. # --hints--