From 6ba868b37535f9dca211cecdf796145fda791bbf Mon Sep 17 00:00:00 2001 From: Moojjoo Date: Tue, 6 Jun 2017 14:57:59 -0400 Subject: [PATCH] Update article.md Line 388 word smithing. --- 1-js/02-first-steps/14-function-basics/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/14-function-basics/article.md b/1-js/02-first-steps/14-function-basics/article.md index 0d0dbe92..742aef2d 100644 --- a/1-js/02-first-steps/14-function-basics/article.md +++ b/1-js/02-first-steps/14-function-basics/article.md @@ -385,7 +385,7 @@ These are exceptions. Generally functions names should be concise, but descripti ## Functions == Comments -Functions should be short and do exactly one thing. If that thing is big, maybe it's worth to split the function into few smaller functions. Sometimes following this rule may be not easy, but it's a definitely good thing. +Functions should be short and do exactly one thing. If that thing is big, maybe it's worth to split the function into few smaller functions. Sometimes following this rule may not be that easy, but it's a definitely good thing. A separate function is not only easier to test and debug -- its very existence is a great comment!