diff --git a/jsguide.html b/jsguide.html index 6ed31458b..c931a6950 100644 --- a/jsguide.html +++ b/jsguide.html @@ -1516,7 +1516,7 @@

5.6.3 No line continuations

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.';