From 0cecd96f1dd0a73c45bf9ee033287a39034b1899 Mon Sep 17 00:00:00 2001 From: Ashmeet Singh Date: Tue, 6 Jun 2017 16:30:23 +0530 Subject: [PATCH] Fixed typos in article.md There were some typos in the first line of A semicolon section. (Line 122). I have proposed a possible fix. --- 1-js/03-code-quality/02-coding-style/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/03-code-quality/02-coding-style/article.md b/1-js/03-code-quality/02-coding-style/article.md index d871e217..7af470a2 100644 --- a/1-js/03-code-quality/02-coding-style/article.md +++ b/1-js/03-code-quality/02-coding-style/article.md @@ -119,7 +119,7 @@ There are two types of indents: ### A semicolon -A semicolons should be after each statement. Even if could possibly be skipped. +A semicolon should be present after each statement. Even if it could be possibly be skipped. There are languages where a semicolon is truly optional. It's rarely used there.