From 7086f278d159642ae154002139d4cbc86f6c935f Mon Sep 17 00:00:00 2001 From: Vikas Date: Wed, 7 Jun 2017 15:31:18 -0500 Subject: [PATCH] Remove unnecessary quotation marks When demonstrating how to start and end comments, there is a code block AND quotations, which can be confusing. Since the code block is already there, the quotation marks are redundant. --- 1-js/02-first-steps/02-structure/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/02-structure/article.md b/1-js/02-first-steps/02-structure/article.md index 3a5aa88e..3cdea514 100644 --- a/1-js/02-first-steps/02-structure/article.md +++ b/1-js/02-first-steps/02-structure/article.md @@ -114,7 +114,7 @@ alert('Hello'); alert('World'); // This comment follows the statement ``` -**Multiline comments start with a forward slash and an asterisk "/*" and end with an asterisk and a forward slash "*/".** +**Multiline comments start with a forward slash and an asterisk /* and end with an asterisk and a forward slash */.** Like this: