From f1c249bcd35141f72b3b4e72dae0df210119e9fe Mon Sep 17 00:00:00 2001 From: Christopher Banh Date: Wed, 23 Dec 2015 17:44:57 -0800 Subject: [PATCH] Reword section 6.2 to recognize the line length --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e6280b8b..ccffd213 100644 --- a/README.md +++ b/README.md @@ -421,7 +421,7 @@ Other Style Guides const name = 'Capt. Janeway'; ``` - - [6.2](#6.2) Strings longer than 100 characters should be written across multiple lines using string concatenation. + - [6.2](#6.2) Strings that cause the line to go over 100 characters should be written across multiple lines using string concatenation. - [6.3](#6.3) Note: If overused, long strings with concatenation could impact performance. [jsPerf](http://jsperf.com/ya-string-concat) & [Discussion](https://github.com/airbnb/javascript/issues/40). ```javascript