From 51510a43c83811406d2098f19e7af90a30918f64 Mon Sep 17 00:00:00 2001 From: Mark Sanghoon Kim Date: Wed, 27 Jan 2016 23:14:53 -0800 Subject: [PATCH] Fixed capitalization and comment spacing Fixed line 1219 to have a lowercase 'a' to be consistent with the style guide. Fixed line 1831 to only have one space between the // and the => --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e8edf1497e..70eae71971 100644 --- a/README.md +++ b/README.md @@ -1216,7 +1216,7 @@ Other Style Guides ```javascript if ([0] && []) { // true - // An array (even an empty one) is an object, objects will evaluate to true + // an array (even an empty one) is an object, objects will evaluate to true } ``` @@ -1828,7 +1828,7 @@ Other Style Guides - [21.2](#21.2) Strings: ```javascript - // => this.reviewScore = 9; + // => this.reviewScore = 9; // bad const totalScore = this.reviewScore + '';