Reword section 6.2 to recognize the line length

This commit is contained in:
Christopher Banh
2015-12-23 17:44:57 -08:00
parent 69d3327362
commit f1c249bcd3

View File

@@ -421,7 +421,7 @@ Other Style Guides
const name = 'Capt. Janeway';
```
- [6.2](#6.2) <a name='6.2'></a> Strings longer than 100 characters should be written across multiple lines using string concatenation.
- [6.2](#6.2) <a name='6.2'></a> Strings that cause the line to go over 100 characters should be written across multiple lines using string concatenation.
- [6.3](#6.3) <a name='6.3'></a> 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