From 1e28ff8978ed8dea2bb098dd4e98bf0ab370410e Mon Sep 17 00:00:00 2001 From: 11un Date: Mon, 14 Jan 2019 13:00:08 -0800 Subject: [PATCH] typos + clean-up wording --- .../02-coding-style/1-style-errors/solution.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/1-js/03-code-quality/02-coding-style/1-style-errors/solution.md b/1-js/03-code-quality/02-coding-style/1-style-errors/solution.md index 810fdad5..764e36c6 100644 --- a/1-js/03-code-quality/02-coding-style/1-style-errors/solution.md +++ b/1-js/03-code-quality/02-coding-style/1-style-errors/solution.md @@ -4,22 +4,22 @@ You could note the following: ```js no-beautify function pow(x,n) // <- no space between arguments { // <- figure bracket on a separate line - let result=1; // <- no spaces to the both sides of = + let result=1; // <- no spaces before or after = for(let i=0;i