From 27974ecdf521a2e826f0f21224047106da453f9c Mon Sep 17 00:00:00 2001 From: Alexander Date: Mon, 25 Sep 2017 03:48:17 +0300 Subject: [PATCH] Extra space & missing newline --- 1-js/03-code-quality/03-comments/article.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/1-js/03-code-quality/03-comments/article.md b/1-js/03-code-quality/03-comments/article.md index fbc49628..4f187129 100644 --- a/1-js/03-code-quality/03-comments/article.md +++ b/1-js/03-code-quality/03-comments/article.md @@ -58,8 +58,9 @@ function showPrimes(n) { function isPrime(n) { for (let i = 2; i < n; i++) { - if ( n % i == 0) return false; + if (n % i == 0) return false; } + return true; } ```