fix minor grammar issue in javascript challenges

This commit is contained in:
Quincy Larson
2015-08-02 19:06:25 -07:00
parent 5c97ab9eed
commit e5fe98b1bb

View File

@ -14,7 +14,7 @@
"Let's take a look at the two ways in which we can write a comment in JavaScript", "Let's take a look at the two ways in which we can write a comment in JavaScript",
"<code> //This is a comment </code>", "<code> //This is a comment </code>",
"These comment out the entire line that they are on", "These comment out the entire line that they are on",
"<code> /*This also is a comment*/ </code>", "<code> /*This is also a comment*/ </code>",
"These comment out everything in between <code> /* </code> and <code> */ </code>", "These comment out everything in between <code> /* </code> and <code> */ </code>",
"Try creating one of each now." "Try creating one of each now."
], ],