From dd8168133f73531b32a1b482ee34b1528c8b8c07 Mon Sep 17 00:00:00 2001 From: burrowsdt <42893235+burrowsdt@users.noreply.github.com> Date: Fri, 25 Oct 2019 14:41:42 -0400 Subject: [PATCH] Added escape characters to the javascript comment curriculum (#37518) --- .../basic-javascript/comment-your-javascript-code.english.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/comment-your-javascript-code.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/comment-your-javascript-code.english.md index f95f0871bb..aa737a7d58 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/comment-your-javascript-code.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/comment-your-javascript-code.english.md @@ -16,7 +16,7 @@ Using // will tell JavaScript to ignore the remainder of the text o // This is an in-line comment. ``` -You can make a multi-line comment beginning with /* and ending with */: +You can make a multi-line comment beginning with /\* and ending with \*/: ```js /* This is a