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