diff --git a/jsguide.html b/jsguide.html index 6ed3145..c931a69 100644 --- a/jsguide.html +++ b/jsguide.html @@ -1516,7 +1516,7 @@ after the slash, and is less obvious to readers.

Instead, write

const longString = 'This is a very long string that far exceeds the 80 ' +
-    'column limit. It does not contains long stretches of spaces since ' +
+    'column limit. It does not contain long stretches of spaces since ' +
     'the concatenated strings are cleaner.';