From 11ba05bff9b37a3d915e628162d7c1f930678429 Mon Sep 17 00:00:00 2001 From: Shafrazi Date: Wed, 6 Mar 2019 23:18:11 +0530 Subject: [PATCH] Spelling correction Change recommended to recommend --- 1-js/02-first-steps/04-variables/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/04-variables/article.md b/1-js/02-first-steps/04-variables/article.md index d78095d2..dcf8a9ca 100644 --- a/1-js/02-first-steps/04-variables/article.md +++ b/1-js/02-first-steps/04-variables/article.md @@ -53,7 +53,7 @@ We can also declare multiple variables in one line: let user = 'John', age = 25, message = 'Hello'; ``` -That might seem shorter, but we don't recommended it. For the sake of better readability, please use a single line per variable. +That might seem shorter, but we don't recommend it. For the sake of better readability, please use a single line per variable. The multiline variant is a bit longer, but easier to read: