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.
This commit is contained in:
Vikas 2017-06-07 15:31:18 -05:00 committed by GitHub
parent fb04fe23d9
commit 7086f278d1

View file

@ -114,7 +114,7 @@ alert('Hello');
alert('World'); // This comment follows the statement
```
**Multiline comments start with a forward slash and an asterisk <code>"/&#42;"</code> and end with an asterisk and a forward slash <code>"&#42;/"</code>.**
**Multiline comments start with a forward slash and an asterisk <code>/&#42;</code> and end with an asterisk and a forward slash <code>&#42;/</code>.**
Like this: