Fix HTML entities

This commit is contained in:
Andrew Johnson
2017-02-17 14:16:57 -06:00
parent c52088205e
commit 00549c832a

View File

@@ -69,13 +69,13 @@ successfully initialized from the link.</li>
<li>Code like this:
<pre>
if ((prec->dol.type != CONSTANT) &&
if ((prec->dol.type != CONSTANT) &amp;&amp;
</pre>
should usually become:
<pre>
if (!dbLinkIsConstant(&prec->dol) &&
if (!dbLinkIsConstant(&amp;prec->dol) &amp;&amp;
</pre>
</li>