aboutsummaryrefslogtreecommitdiffstats
path: root/docs/CodingStandards.html
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-11-24 17:18:39 +0000
committerDan Gohman <gohman@apple.com>2008-11-24 17:18:39 +0000
commit4dfac708ba57fcb0c295d993dd9e239963d4e42f (patch)
tree4ab54604e48bc1a77cb9a7a49af0b3e6079e12be /docs/CodingStandards.html
parentc630c41f82913ff986a125acc9899fc265564732 (diff)
downloadexternal_llvm-4dfac708ba57fcb0c295d993dd9e239963d4e42f.zip
external_llvm-4dfac708ba57fcb0c295d993dd9e239963d4e42f.tar.gz
external_llvm-4dfac708ba57fcb0c295d993dd9e239963d4e42f.tar.bz2
Fix a few HTML tidiness issues.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@59966 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/CodingStandards.html')
-rw-r--r--docs/CodingStandards.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/CodingStandards.html b/docs/CodingStandards.html
index 9a93278..75d5cc8 100644
--- a/docs/CodingStandards.html
+++ b/docs/CodingStandards.html
@@ -645,7 +645,7 @@ code that should not be reached. These are typically of the form:</p>
<div class="doc_code">
<pre>
-assert(0 && "Some helpful error message");
+assert(0 &amp;&amp; "Some helpful error message");
</pre>
</div>
@@ -656,7 +656,7 @@ generating a warning.</p>
<div class="doc_code">
<pre>
-assert(0 && "Some helpful error message");
+assert(0 &amp;&amp; "Some helpful error message");
// Not reached
return 0;
</pre>