Fixed a typo.

This commit is contained in:
James Robinson II 2017-06-29 22:16:49 -04:00
parent 85799e8cd3
commit 6161e33d8a

View File

@ -1516,7 +1516,7 @@ after the slash, and is less obvious to readers.</p>
<p>Instead, write</p>
<pre><code class="language-js prettyprint">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.';
</code></pre>