From bdae7343bbc6d459607ba21f6c6b759ea86bd878 Mon Sep 17 00:00:00 2001 From: David Carlson <41599190+Writhyn@users.noreply.github.com> Date: Fri, 8 Nov 2019 23:25:48 -0500 Subject: [PATCH] escaped backslash character on line 22 (#37721) Previously only showed empty parentheses. --- .../catch-mixed-usage-of-single-and-double-quotes.english.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/debugging/catch-mixed-usage-of-single-and-double-quotes.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/debugging/catch-mixed-usage-of-single-and-double-quotes.english.md index 82e463f1ec..4732000573 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/debugging/catch-mixed-usage-of-single-and-double-quotes.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/debugging/catch-mixed-usage-of-single-and-double-quotes.english.md @@ -19,7 +19,7 @@ const quoteInString = "Groucho Marx once said 'Quote me as saying I was mis-quot const uhOhGroucho = 'I've had a perfectly wonderful evening, but this wasn't it.'; ``` -Of course, it is okay to use only one style of quotes. You can escape the quotes inside the string by using the backslash (\) escape character: +Of course, it is okay to use only one style of quotes. You can escape the quotes inside the string by using the backslash (\\) escape character: ```js // Correct use of same quotes: