From 6161e33d8aea5ba4fa60ab56325bfbefedc458bd Mon Sep 17 00:00:00 2001 From: James Robinson II Date: Thu, 29 Jun 2017 22:16:49 -0400 Subject: [PATCH] Fixed a typo. --- jsguide.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.';