From 28982750047a6fd8acca5ca27d10cf22ed57b636 Mon Sep 17 00:00:00 2001 From: Julie Kim Date: Wed, 29 Nov 2017 10:32:47 -0500 Subject: [PATCH] "Start with the two" Change to => "Start with two" Minor English grammar issue --- 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 fc1dc46e..e9e2e0f9 100644 --- a/1-js/02-first-steps/02-structure/article.md +++ b/1-js/02-first-steps/02-structure/article.md @@ -102,7 +102,7 @@ As time goes on, the program becomes more and more complex. It becomes necessary Comments can be put into any place of the script. They don't affect the execution, because the engine simply ignores them. -**One-line comments start with the two forward slash characters `//`.** +**One-line comments start with two forward slash characters `//`.** The rest of the line is a comment. It may occupy a full line of its own or follow a statement.