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: